Add $(CFLAGS) to the link commands. This makes 'make linux-x86
authorIan Romanick <idr@us.ibm.com>
Sat, 2 Jul 2005 07:12:44 +0000 (07:12 +0000)
committerIan Romanick <idr@us.ibm.com>
Sat, 2 Jul 2005 07:12:44 +0000 (07:12 +0000)
ARCH_FLAGS=-m32' work correctly on x86-64 systems.

progs/xdemos/Makefile

index ddd1b0bfee81658df7406709c72d2f7c4fd4dc38..bff6b71ca48ca76b790114b871cad4364191a0f7 100644 (file)
@@ -51,10 +51,10 @@ clean:
 
 # special cases
 pbinfo: pbinfo.o pbutil.o
-       $(CC) pbinfo.o pbutil.o $(APP_LIB_DEPS) -o $@
+       $(CC) $(CFLAGS) pbinfo.o pbutil.o $(APP_LIB_DEPS) -o $@
 
 pbdemo: pbdemo.o pbutil.o
-       $(CC) pbdemo.o pbutil.o $(APP_LIB_DEPS) -o $@
+       $(CC) $(CFLAGS) pbdemo.o pbutil.o $(APP_LIB_DEPS) -o $@
 
 pbinfo.o: pbinfo.c pbutil.h
        $(CC) -c -I. -I$(INCDIR) $(CFLAGS) pbinfo.c
@@ -66,13 +66,13 @@ pbutil.o: pbutil.c pbutil.h
        $(CC) -c -I. -I$(INCDIR) $(CFLAGS) pbutil.c
 
 glxgears_fbconfig: glxgears_fbconfig.o pbutil.o
-       $(CC) glxgears_fbconfig.o pbutil.o $(APP_LIB_DEPS) -o $@
+       $(CC) $(CFLAGS) glxgears_fbconfig.o pbutil.o $(APP_LIB_DEPS) -o $@
 
 glxgears_fbconfig.o: glxgears_fbconfig.c pbutil.h
-       $(CC) -c -I. -I$(INCDIR) $(CFLAGS) glxgears_fbconfig.c
+       $(CC) $(CFLAGS) -c -I. -I$(INCDIR) $(CFLAGS) glxgears_fbconfig.c
 
 xrotfontdemo: xrotfontdemo.o xuserotfont.o
-       $(CC) xrotfontdemo.o xuserotfont.o $(APP_LIB_DEPS) -o $@
+       $(CC) $(CFLAGS) xrotfontdemo.o xuserotfont.o $(APP_LIB_DEPS) -o $@
 
 xuserotfont.o: xuserotfont.c xuserotfont.h
        $(CC) -c -I. -I$(INCDIR) $(CFLAGS) xuserotfont.c