From b68159f49b9b0f32a0e4f10ff1e26f6084b1efff Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sun, 17 Jun 2007 19:32:04 +0000 Subject: [PATCH] The pdcurses library was showing up twice on the tuidemo link line. --- sdl1/Makefile.mng | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdl1/Makefile.mng b/sdl1/Makefile.mng index d33e3f84..39e11555 100644 --- a/sdl1/Makefile.mng +++ b/sdl1/Makefile.mng @@ -73,7 +73,7 @@ ptest.exe: %.exe: $(demodir)/%.c $(BUILD) -o $@ $< $(LDFLAGS) tuidemo.exe: tuidemo.o tui.o - $(CC) -o $@ $? $(LDFLAGS) + $(CC) -o $@ tuidemo.o tui.o $(LDFLAGS) tui.o: $(demodir)/tui.c $(demodir)/tui.h $(BUILD) -c $<