diff options
author | Dan Nicholson <[email protected]> | 2007-09-28 18:47:11 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-09-28 18:47:11 -0600 |
commit | 9cc6d2310c3c14cab7c49a59baebdef450c6f65a (patch) | |
tree | 279db7b680c018c80772e5ed956517768b7c8dca /progs/redbook | |
parent | 1a045954be538aecd2f15a1c0ebb3153fb449379 (diff) |
add support for LDFLAGS env var
Diffstat (limited to 'progs/redbook')
-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 febc74441b9..078f19125a8 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 $@ |