diff options
Diffstat (limited to 'ifenslave')
-rw-r--r-- | ifenslave/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ifenslave/Makefile b/ifenslave/Makefile index 3a7ec80..e90f13f 100644 --- a/ifenslave/Makefile +++ b/ifenslave/Makefile @@ -1,10 +1,13 @@ OBJS=ifenslave -include ../../include/rules.make +# include ../../include/rules.make CC=gcc CFLAGS+=-Wstrict-prototypes -I/usr/src/linux/include -momit-leaf-frame-pointer all: $(OBJS) +clean: + rm -vf $(OBJS) core *.[oa] *~ + ifenslave: ifenslave.o $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $< strip -R .comment -R .note $@ |