changeset 26335:cd660a9aefc5

cosmetics: Add CFLAGS to compilation commands everywhere.
author diego
date Wed, 09 Apr 2008 16:50:30 +0000
parents b7732b0221ed
children 49b0e7c3437b
files TOOLS/Makefile
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/TOOLS/Makefile	Wed Apr 09 16:42:18 2008 +0000
+++ b/TOOLS/Makefile	Wed Apr 09 16:50:30 2008 +0000
@@ -41,7 +41,7 @@
 	$(CC) $(CFLAGS) -o $@ $< -lSDL_image
 
 vfw2menc$(EXESUF): vfw2menc.c
-	$(CC) $< -o $@ -lwinmm -lole32
+	$(CC) $(CFLAGS) -o $@ $< -lwinmm -lole32
 
 REAL_SRCS    = $(wildcard realcodecs/*.c)
 REAL_TARGETS = $(REAL_SRCS:.c=.so.6.0)
@@ -69,7 +69,7 @@
 endif
 
 netstream: netstream.o $(NETSTREAM_DEPS)
-	$(CC) -o $@ $^
+	$(CC) $(CFLAGS) -o $@ $^
 
 clean distclean:
 	rm -f *.o *~ $(OBJS)