summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorClark Rawlins <clark@bit63.org>2008-02-14 23:22:20 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2008-02-14 23:22:20 +0000
commit02016f742c871f99077f7c1304945ce81f452dd0 (patch)
treebb60b45f8d20b064088b67abf8e25e39123380fe /Makefile
parent3697ac75d5445c7ef66913cc3935f0bfe57a8d19 (diff)
downloadast2050-flashrom-02016f742c871f99077f7c1304945ce81f452dd0.zip
ast2050-flashrom-02016f742c871f99077f7c1304945ce81f452dd0.tar.gz
Fix compilation with custom CFLAGS
With this small change it is possible to build flashrom again when specifying custom CFLAGS/LDFLAGS from the make command line like. make CFLAGS="..." LDFLAGS="..." I need to do this when building flashrom in a cross compiler environment like buildroot for a foreign target. Corresponding to flashrom svn r196 and coreboot v2 svn r3102. Signed-off-by: Clark Rawlins <clark@bit63.org> Acked-by: Ronald G. Minnich <rminnich@gmail.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 708c077..57c9686 100644
--- a/Makefile
+++ b/Makefile
@@ -32,12 +32,14 @@ all: pciutils dep $(PROGRAM)
# of the checked out flashrom files.
SVNDEF := -D'FLASHROM_VERSION="$(shell svnversion -cn . \
| sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/")"'
-CFLAGS += $(SVNDEF)
$(PROGRAM): $(OBJS)
$(CC) -o $(PROGRAM) $(OBJS) $(LDFLAGS)
$(STRIP) $(STRIP_ARGS) $(PROGRAM)
+flashrom.o: flashrom.c
+ $(CC) -c $(CFLAGS) $(SVNDEF) $(CPPFLAGS) $< -o $@
+
clean:
rm -f *.o *~
OpenPOWER on IntegriCloud