1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
# Unix Makefile for Glulxe.
# To use this, you must set three variables. GLKINCLUDEDIR must be the
# directory containing glk.h, glkstart.h, and the Make.library file.
# GLKLIBDIR must be the directory containing the library.a file.
# And GLKMAKEFILE must be the name of the Make.library file. Two
# sets of values appear below; uncomment one of them and change the
# directories appropriately.
GLKINCLUDEDIR = /usr/include/glktermw
GLKLIBDIR = /usr/lib
GLKMAKEFILE = Make.glktermw
#GLKINCLUDEDIR = ../glkterm
#GLKLIBDIR = ../glkterm
#GLKMAKEFILE = Make.glkterm
#GLKINCLUDEDIR = ../xglk
#GLKLIBDIR = ../xglk
#GLKMAKEFILE = Make.xglk
#GLKINCLUDEDIR = ../remglk
#GLKLIBDIR = ../remglk
#GLKMAKEFILE = Make.remglk
#GLKINCLUDEDIR = ../gtkglk/src
#GLKLIBDIR = ../gtkglk
#GLKMAKEFILE = ../Make.gtkglk
# Pick a C compiler.
#CC = cc
CC = gcc
OPTIONS = -g -Wall -Wmissing-prototypes -Wstrict-prototypes -Wno-unused -DOS_UNIX
# Locate the libxml2 library. You only need these lines if you are using
# the VM_DEBUGGER option. If so, uncomment these and set appropriately.
#XMLLIB = -L/usr/local/lib -lxml2
#XMLLIBINCLUDEDIR = -I/usr/local/include/libxml2
include $(GLKINCLUDEDIR)/$(GLKMAKEFILE)
CFLAGS = $(OPTIONS) -I$(GLKINCLUDEDIR) $(XMLLIBINCLUDEDIR)
LIBS = -L$(GLKLIBDIR) $(GLKLIB) $(LINKLIBS) -lm $(XMLLIB)
OBJS = main.o files.o vm.o exec.o funcs.o operand.o string.o glkop.o \
heap.o serial.o search.o accel.o float.o gestalt.o osdepend.o \
profile.o debugger.o
all: glulxe
glulxe: $(OBJS) unixstrt.o
$(CC) $(OPTIONS) -o glulxe $(OBJS) unixstrt.o $(LIBS)
glulxdump: glulxdump.o
$(CC) -o glulxdump glulxdump.o
$(OBJS) unixstrt.o: glulxe.h
exec.o operand.o: opcodes.h
gestalt.o: gestalt.h
clean:
rm -f *~ *.o glulxe glulxdump profile-raw
|