summaryrefslogtreecommitdiffstats
path: root/progs/vp
diff options
context:
space:
mode:
authorDan Nicholson <[email protected]>2007-09-28 18:47:11 -0600
committerBrian <[email protected]>2007-09-28 18:47:11 -0600
commit9cc6d2310c3c14cab7c49a59baebdef450c6f65a (patch)
tree279db7b680c018c80772e5ed956517768b7c8dca /progs/vp
parent1a045954be538aecd2f15a1c0ebb3153fb449379 (diff)
add support for LDFLAGS env var
Diffstat (limited to 'progs/vp')
-rw-r--r--progs/vp/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/vp/Makefile b/progs/vp/Makefile
index c3faeb5b602..4952a52fc98 100644
--- a/progs/vp/Makefile
+++ b/progs/vp/Makefile
@@ -26,7 +26,7 @@ INCLUDES = -I. -I$(TOP)/include -I../samples
.SUFFIXES: .c
.c:
- $(CC) $(INCLUDES) $(CFLAGS) $< $(LIBS) -o $@
+ $(CC) $(INCLUDES) $(CFLAGS) $(LDFLAGS) $< $(LIBS) -o $@
.c.o:
$(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@