diff options
| author | Keith Whitwell <keith@tungstengraphics.com> | 2008-09-11 20:07:41 +0100 | 
|---|---|---|
| committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-09-11 20:07:41 +0100 | 
| commit | a90cae8a17283a4d50ba153510aecfbee9f63c66 (patch) | |
| tree | a0124bb7e31ad115fd2e828800ba9fcda7ba85e8 | |
| parent | 536092f9e072f9a1d73f7ea538857c4ffe13d11b (diff) | |
demos: fix LIBS ref in makefile
| -rw-r--r-- | progs/demos/Makefile | 2 | 
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 ##### | 
