Skip to content
Snippets Groups Projects
Commit 46aec1b7 authored by deuce's avatar deuce
Browse files

Switched back to libcurses... Slackware doesn't have a libcurses.a (but

DOES have libcurses.so - so -lcurses is still correct for all the other
uifc stuff)
parent 4c4052bd
No related branches found
No related tags found
No related merge requests found
......@@ -45,13 +45,13 @@ include targets.mk # defines all targets
include objects.mk # defines $(OBJS)
ifdef USE_DIALOG
LFLAGS += -L../../libdialog -ldialog -lcurses
LFLAGS += -L../../libdialog -ldialog -lncurses
CFLAGS += -I../../libdialog -DUSE_DIALOG
OBJS += $(ODIR)$(SLASH)uifcd.$(OFILE)
endif
ifdef USE_CURSES
LFLAGS += -lcurses
LFLAGS += -lncurses
CFLAGS += -DUSE_CURSES
OBJS += $(ODIR)$(SLASH)uifcc.$(OFILE)
endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment