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

Use the new UIFC32 lib.

parent 4b64f13e
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,8 @@ endif
#USE_DIALOG = 1 # Dialog vesrion of UIFC
#USE_FLTK = 1 # Use Windowed version
USE_CURSES = 1 # Curses version of UIFC
#USE_CURSES = 1 # Curses version of UIFC
USE_UIFC32 = 1 # NEW curses version of uifc
CC = gcc
CCPP = g++
SLASH = /
......@@ -64,6 +65,10 @@ ifdef USE_CURSES
CFLAGS += -DUSE_CURSES
endif
ifdef UIFC32
LFLAGS += $(CURSESLIB)
endif
ifdef USE_FLTK
LFLAGS += -L../../../lib/fltk/$(os) -L/usr/X11R6/lib -lfltk -lX11
CFLAGS += -I../../../include/fltk -I/usr/X11R6/include -DUSE_FLTK
......@@ -91,6 +96,11 @@ ifdef USE_CURSES
OBJS += $(ODIR)$(SLASH)uifcc.$(OFILE)
endif
ifdef UIFC32
OBJS += $(ODIR)$(SLASH)uifc32.$(OFILE)
OBJS += $(ODIR)$(SLASH)ciowrap.$(OFILE)
endif
ifdef USE_FLTK
OBJS += $(ODIR)$(SLASH)uifcfltk.$(OFILE)
endif
......@@ -135,7 +145,7 @@ $(SCFG): $(OBJS)
@$(MAKE) --no-print-directory -C ../../libdialog
endif
@echo Linking $@
@$(CCPP) -o $@ $(OBJS) $(LFLAGS)
$(CCPP) -o $@ $(OBJS) $(LFLAGS)
# Auto-dependency files (should go in output dir, but gcc v2.9.5 puts in cwd)
-include ./*.d
......
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