diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2007-09-28 18:42:21 -0600 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-09-28 18:42:21 -0600 |
commit | 2a3e33865dd9a3d064a3c0af94ef11d4aa4a6ce4 (patch) | |
tree | 340934443ff1acfa3100001391a55e24744ad9bf /progs/redbook/Makefile | |
parent | e776e7a95a4fc4fac95048665ab4c981e153b7fb (diff) | |
download | external_mesa3d-2a3e33865dd9a3d064a3c0af94ef11d4aa4a6ce4.zip external_mesa3d-2a3e33865dd9a3d064a3c0af94ef11d4aa4a6ce4.tar.gz external_mesa3d-2a3e33865dd9a3d064a3c0af94ef11d4aa4a6ce4.tar.bz2 |
add support for LDFLAGS env var
Diffstat (limited to 'progs/redbook/Makefile')
-rw-r--r-- | progs/redbook/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/redbook/Makefile b/progs/redbook/Makefile index febc744..078f191 100644 --- a/progs/redbook/Makefile +++ b/progs/redbook/Makefile @@ -24,7 +24,7 @@ PROGS = aaindex aapoly aargb accanti accpersp alpha alpha3D anti \ .SUFFIXES: .c .c: $(LIB_DEP) - $(CC) -I$(INCDIR) $(CFLAGS) $< $(APP_LIB_DEPS) -o $@ + $(CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) $< $(APP_LIB_DEPS) -o $@ |