summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfnm3 <fnm3>2002-11-21 10:47:38 +0000
committerfnm3 <fnm3>2002-11-21 10:47:38 +0000
commitabd6a9fd6a36de9c2adb9e9aaf248cafa339dd45 (patch)
tree3885019218feed5b225fd654ce155eaead733bd2
parent7ec51d01fcf6a544734820fa656f6e11b864f2e0 (diff)
Added $(PROGSPECS)
-rw-r--r--userspace/ebtables2/extensions/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/userspace/ebtables2/extensions/Makefile b/userspace/ebtables2/extensions/Makefile
index 7ff9cd4..28e54cf 100644
--- a/userspace/ebtables2/extensions/Makefile
+++ b/userspace/ebtables2/extensions/Makefile
@@ -6,8 +6,8 @@ EXT_OBJS+=$(foreach T,$(EXT_FUNC), extensions/ebt_$(T).o)
EXT_OBJS+=$(foreach T,$(EXT_TABLES), extensions/ebtable_$(T).o)
extensions/ebt_%.o: extensions/ebt_%.c include/ebtables_u.h
- $(CC) $(CFLAGS) -c -o $@ $< -I$(KERNEL_INCLUDES)
+ $(CC) $(CFLAGS) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES)
extensions/ebtable_%.o: extensions/ebtable_%.c
- $(CC) $(CFLAGS) -c -o $@ $< -I$(KERNEL_INCLUDES)
+ $(CC) $(CFLAGS) $(PROGSPECS) -c -o $@ $< -I$(KERNEL_INCLUDES)