Author: hailfinger
Date: 2009-06-23 13:48:37 +0200 (Tue, 23 Jun 2009)
New Revision: 626

Modified:
   trunk/Makefile
Log:
The makefile rules for %.o and flashrom.o are identical. Let %.o handle
flashrom.o as well.

Signed-off-by: Carl-Daniel Hailfinger <[email protected]>
Acked-by: Luc Verhaegen <[email protected]>


Modified: trunk/Makefile
===================================================================
--- trunk/Makefile      2009-06-23 11:33:43 UTC (rev 625)
+++ trunk/Makefile      2009-06-23 11:48:37 UTC (rev 626)
@@ -71,11 +71,8 @@
 
 FEATURE_LIBS = $(shell LANG=C grep -q "FTDISUPPORT := yes" .features && printf 
"%s" "-lftdi")
 
-flashrom.o: flashrom.c .features
-       $(CC) $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) -c -o $@ $< $(SVNDEF)
-
 %.o: %.c .features
-       $(CC) $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) -c $< -o $@ $(SVNDEF)
+       $(CC) $(CFLAGS) $(CPPFLAGS) $(FEATURE_CFLAGS) $(SVNDEF) -o $@ -c $<
 
 clean:
        rm -f $(PROGRAM) *.o


-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to