From e806fd27e8fc8ce54574938802d3905e3dbfd7fc Mon Sep 17 00:00:00 2001 From: stefan Date: Tue, 3 Aug 2010 12:13:27 +0000 Subject: [PATCH] - add missing file git-svn-id: http://svn.lfbs.rwth-aachen.de/svn/scc/trunk/MetalSVM@25 315a16e6-25f9-4109-90ae-ca3045a26c18 --- lwip/src/core/Makefile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 lwip/src/core/Makefile diff --git a/lwip/src/core/Makefile b/lwip/src/core/Makefile new file mode 100644 index 00000000..a6d046e6 --- /dev/null +++ b/lwip/src/core/Makefile @@ -0,0 +1,25 @@ +C_source = init.c mem.c memp.c netif.c pbuf.c stats.c udp.c tcp.c + +OBJS += $(patsubst %.c, %.o, $(filter %.c, $(C_source))) + +# other implicit rules +%.o : %.c + $(CC) -c $(CFLAGS) -o $@ $< + +default: + $(MAKE) all + +all: + $(MAKE) $(LIBLWIP) + +$(LIBLWIP): $(OBJS) + $(AR) $(ARFLAGS) $(LIBLWIP) $(OBJS) + +clean: + $(RM) *.o *~ + +depend: + $(CC) -MM $(CFLAGS) $(C_source) $(CPP_source) > Makefile.dep + +-include Makefile.dep +# DO NOT DELETE