2010-03-05 20:27:58 +00:00
|
|
|
--- a/Makefile
|
|
|
|
+++ b/Makefile
|
2012-06-04 21:55:49 +00:00
|
|
|
@@ -21,34 +21,17 @@
|
2009-10-07 15:14:28 +00:00
|
|
|
# MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
|
|
|
-include $(TOPDIR)/config.mk
|
|
|
|
-
|
2012-06-04 21:55:49 +00:00
|
|
|
-HOSTSRCS := $(SRCTREE)/lib/crc32.c fw_env.c fw_env_main.c
|
|
|
|
+SRCS := crc32.c fw_env.c fw_env_main.c
|
2009-10-07 15:14:28 +00:00
|
|
|
HEADERS := fw_env.h
|
|
|
|
|
2011-10-24 21:49:24 +00:00
|
|
|
-# Compile for a hosted environment on the target
|
|
|
|
-HOSTCPPFLAGS = -idirafter $(SRCTREE)/include \
|
|
|
|
- -idirafter $(OBJTREE)/include2 \
|
|
|
|
- -idirafter $(OBJTREE)/include \
|
|
|
|
- -DUSE_HOSTCC
|
|
|
|
-
|
|
|
|
-ifeq ($(MTD_VERSION),old)
|
|
|
|
-HOSTCPPFLAGS += -DMTD_OLD
|
|
|
|
-endif
|
2012-06-04 21:55:49 +00:00
|
|
|
-
|
|
|
|
-all: $(obj)fw_printenv
|
|
|
|
-
|
|
|
|
-# Some files complain if compiled with -pedantic, use HOSTCFLAGS_NOPED
|
2011-10-24 21:49:24 +00:00
|
|
|
-$(obj)fw_printenv: $(HOSTSRCS) $(HEADERS)
|
|
|
|
- $(HOSTCC) $(HOSTCFLAGS_NOPED) $(HOSTLDFLAGS) -o $@ $(HOSTSRCS)
|
2012-06-04 21:55:49 +00:00
|
|
|
+CPPFLAGS := -Wall $(CFLAGS)
|
|
|
|
|
|
|
|
-clean:
|
|
|
|
- rm -f $(obj)fw_printenv
|
|
|
|
+all: fw_printenv
|
2009-10-07 15:14:28 +00:00
|
|
|
|
|
|
|
-#########################################################################
|
2012-06-04 21:55:49 +00:00
|
|
|
+fw_printenv: $(SRCS) $(HEADERS)
|
|
|
|
+ $(CC) $(CPPFLAGS) $(SRCS) -o fw_printenv
|
|
|
|
|
2009-10-07 15:14:28 +00:00
|
|
|
-include $(TOPDIR)/rules.mk
|
|
|
|
-
|
|
|
|
-sinclude $(obj).depend
|
2012-06-04 21:55:49 +00:00
|
|
|
+clean:
|
|
|
|
+ rm -f fw_printenv
|
|
|
|
|
|
|
|
#########################################################################
|