Skip to content
Snippets Groups Projects
Commit 820f6446 authored by rswindell's avatar rswindell
Browse files

Uses g++ to build c++ files and final link.

parent 6960649d
No related branches found
No related tags found
No related merge requests found
......@@ -24,7 +24,7 @@ endif
#USE_FLTK = 1 # Use Windowed version
USE_CURSES = 1 # Curses version of UIFC
CC = gcc
CCPP = gcc
CCPP = g++
SLASH = /
OFILE = o
UIFC = ../../uifc
......@@ -115,7 +115,7 @@ $(SCFG): $(OBJS)
@$(MAKE) --no-print-directory -C ../../libdialog
endif
@echo Linking $@
@$(CC) -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