summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-09-11 20:07:41 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-09-11 20:07:41 +0100
commita90cae8a17283a4d50ba153510aecfbee9f63c66 (patch)
treea0124bb7e31ad115fd2e828800ba9fcda7ba85e8 /progs
parent536092f9e072f9a1d73f7ea538857c4ffe13d11b (diff)
demos: fix LIBS ref in makefile
Diffstat (limited to 'progs')
-rw-r--r--progs/demos/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/demos/Makefile b/progs/demos/Makefile
index 43cab1ae27..123d1e59e9 100644
--- a/progs/demos/Makefile
+++ b/progs/demos/Makefile
@@ -81,7 +81,7 @@ PROGS = \
# make executable from .c file:
.c: $(LIB_DEP) readtex.o
- $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) $< readtex.o $(APP_LIB_DEPS) -o $@
+ $(APP_CC) -I$(INCDIR) $(CFLAGS) $(LDFLAGS) $< readtex.o $(LIBS) -o $@
##### TARGETS #####