From: Piotr Dymacz Date: Mon, 20 Jan 2014 00:33:11 +0000 (+0100) Subject: Just small fixes X-Git-Tag: 2014-11-19~34^2~4 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=ac1571ff35e0bc3fc0c3993a95bfd3c574dee61a;p=oweals%2Fu-boot_mod.git Just small fixes --- diff --git a/u-boot/httpd/Makefile b/u-boot/httpd/Makefile index 738f67c..c4ddbd9 100755 --- a/u-boot/httpd/Makefile +++ b/u-boot/httpd/Makefile @@ -2,27 +2,20 @@ # Makefile for http stuff # -#include $(TOPDIR)/config.mk - -CFLAGS += -I../include -I../httpd +include $(TOPDIR)/config.mk LIB = libhttpd.a - OBJS += uip.o uip_arch.o uip_arp.o httpd.o fs.o -all: $(LIB) - -$(LIB): $(START) $(OBJS) - $(AR) crv $@ $(OBJS) - +all: $(LIB) -#%.o: -# $(CC) $(CFLAGS) -c $(<:.o=.c) +$(LIB): $(START) $(OBJS) + $(AR) crv $@ $(OBJS) ######################################################################### .depend: Makefile $(OBJS:.o=.c) - $(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@ + $(CC) -M $(CFLAGS) $(OBJS:.o=.c) > $@ sinclude .depend