Just small fixes
authorPiotr Dymacz <pepe2k@gmail.com>
Mon, 20 Jan 2014 00:33:11 +0000 (01:33 +0100)
committerPiotr Dymacz <pepe2k@gmail.com>
Mon, 20 Jan 2014 00:33:11 +0000 (01:33 +0100)
u-boot/httpd/Makefile

index 738f67c606f223e8db60f7b91348fc1f363d3538..c4ddbd96d40aac7dba9602460459792850c22426 100755 (executable)
@@ -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