configured Makefile for building on SDF cluster

This commit is contained in:
Kashif Shah 2023-05-21 03:29:29 +00:00
parent 1407a08c17
commit 491972c80d
1 changed files with 5 additions and 5 deletions

View File

@ -27,18 +27,18 @@ CC = gcc
### Select one of the following that is appropriate for your curses...
### Comment ALL of them out if you are using opcurses
#LIBS = -lncurses -ltermcap
#LIBS = -lcurses -ltermlib
LIBS = -lcurses -ltermlib
#LIBS = -lpdcurses
#Linux links in term?? automatically.
#LIBS = -lncurses
### uncomment to use "op-curses" package
OPDEF = -DUSE_OPCURSES
CUROBJ = ../opcurses/curses.o ../opcurses/curgtk.o
#OPDEF = -DUSE_OPCURSES
#CUROBJ = ../opcurses/curses.o ../opcurses/curgtk.o
### uncomment to compile using opcurses GTK+ driver
CPPFLAGS = `gtk-config --cflags` -DUSE_OPCURSES
LDFLAGS = `gtk-config --libs`
#CPPFLAGS = `gtk-config --cflags` -DUSE_OPCURSES
#LDFLAGS = `gtk-config --libs`
#################### that's it for changing the Makefile ####################