summaryrefslogtreecommitdiffstats
path: root/kernel/Makefile.in
blob: be8c133e256213c6557e90e1c88d0caa745862ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# $Id$
#
# This file is part of seppl.
#
# seppl is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# seppl is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with seppl; if not, write to the Free Software Foundation,
# Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.

# This Makefile is NOT created by automake!

KERNELDIR=@KERNELDIR@
SEPPL_MODDIR=@KERNELMODDIR@/seppl
PACKAGE=@PACKAGE@
VERSION=@VERSION@
DISTFILES=seppl.c seppl.h ipt_CRYPT.c ipt_CRYPT.h ipt_DECRYPT.c ipt_DECRYPT.h test.sh Makefile.in seppl_protocol.h
distdir = ../$(PACKAGE)-$(VERSION)
CFLAGS=-Wall -g -O2
KERNEL_CFLAGS= -I$(KERNELDIR)/include -DLINUX -DMODULE -D__KERNEL__ -DEXPORT_SYMTAB -DPACKAGE_BUGREPORT="\"@PACKAGE_BUGREPORT@\""

include $(KERNELDIR)/.config

all: Makefile ipt_CRYPT.o ipt_DECRYPT.o seppl.o

Makefile: Makefile.in
	cd .. && ./config.status kernel/Makefile


ifdef CONFIG_MODVERSIONS
seppl.o ipt_CRYPT.o ipt_DECRYPT.o: seppl.ver
endif

ifndef GENKSYMS
GENKSYMS=genksyms
endif

ipt_CRYPT.o: ipt_CRYPT.c
	$(CC) $(CFLAGS) -c $< -o $@ $(KERNEL_CFLAGS)

ipt_DECRYPT.o: ipt_DECRYPT.c
	$(CC) $(CFLAGS) -c $< -o $@ $(KERNEL_CFLAGS)

seppl.o: seppl.c
	$(CC) $(CFLAGS) -c $< -o $@ $(KERNEL_CFLAGS)

seppl.ver: seppl.c
	$(CC) $(CFLAGS) $(KERNEL_CFLAGS) -E -D__GENKSYMS__ $^ | $(GENKSYMS) -k `uname -r`> $@

install:
	mkdir -p $(SEPPL_MODDIR)
	install -m644 seppl.o ipt_CRYPT.o ipt_DECRYPT.o $(SEPPL_MODDIR)

distdir: 
	mkdir -p $(distdir)
	cp -p $(DISTFILES) $(distdir)

mostlyclean: clean
distclean: clean

maintainer-clean: clean
	rm -f Makefile

clean:
	rm -f *.o *.ver

.PHONY: all clean maintainer-clean mostlyclean distclean distdir install