diff -r -c glulxe-0.4.3.orig/Makefile glulxe-0.4.3/Makefile *** glulxe-0.4.3.orig/Makefile 2008-01-24 01:43:20.000000000 +0100 --- glulxe-0.4.3/Makefile 2008-06-08 10:46:42.000000000 +0200 *************** *** 7,17 **** # sets of values appear below; uncomment one of them and change the # directories appropriately. ! GLKINCLUDEDIR = ../cheapglk ! GLKLIBDIR = ../cheapglk ! GLKMAKEFILE = Make.cheapglk ! #GLKINCLUDEDIR = ../glkterm #GLKLIBDIR = ../glkterm #GLKMAKEFILE = Make.glkterm --- 7,17 ---- # sets of values appear below; uncomment one of them and change the # directories appropriately. ! #GLKINCLUDEDIR = ../cheapglk ! #GLKLIBDIR = ../cheapglk ! #GLKMAKEFILE = Make.cheapglk ! GLKINCLUDEDIR = /usr/include/glkterm #GLKLIBDIR = ../glkterm #GLKMAKEFILE = Make.glkterm *************** *** 25,34 **** OPTIONS = -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wno-unused -DOS_UNIX ! include $(GLKINCLUDEDIR)/$(GLKMAKEFILE) CFLAGS = $(OPTIONS) -I$(GLKINCLUDEDIR) ! LIBS = -L$(GLKLIBDIR) $(GLKLIB) $(LINKLIBS) OBJS = main.o files.o vm.o exec.o funcs.o operand.o string.o glkop.o \ heap.o serial.o search.o gestalt.o osdepend.o --- 25,36 ---- OPTIONS = -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wno-unused -DOS_UNIX ! #include $(GLKINCLUDEDIR)/$(GLKMAKEFILE) ! LINKLIBS = -lncurses ! GLKLIB = -lglkterm CFLAGS = $(OPTIONS) -I$(GLKINCLUDEDIR) ! LIBS = $(GLKLIB) $(LINKLIBS) OBJS = main.o files.o vm.o exec.o funcs.o operand.o string.o glkop.o \ heap.o serial.o search.o gestalt.o osdepend.o