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
|
INCLUDES = -I$(srcdir)/../headers -I$(srcdir)/.. -I$(srcdir)/../files -I$(srcdir)/../imagewin \
-I$(srcdir)/../shapes -I$(srcdir)/../objs -I$(srcdir)/../audio\
-I$(srcdir)/../gumps -I$(srcdir)/../tools \
-I$(srcdir)/../server $(SDL_CFLAGS) $(INCDIRS) \
$(WINDOWING_SYSTEM) $(DEBUG_FLAGS) $(CPPFLAGS)
SUBDIRS = compiler ucxt
noinst_LTLIBRARIES = libusecode.la
libusecode_la_SOURCES = \
bgintrinsics.h \
siintrinsics.h \
intrinsics.cc \
ucinternal.cc \
ucinternal.h \
ucmachine.cc \
ucmachine.h \
ucsched.h \
ucsched.cc \
ucscriptop.h \
useval.cc \
useval.h \
conversation.cc \
conversation.h \
keyring.cc \
keyring.h \
ucdisasm.cc \
ucdebugging.cc \
ucdebugging.h \
debugserver.cc \
debugserver.h \
debugmsg.h \
stackframe.cc \
stackframe.h \
ucserial.h \
ucserial.cc \
ucfunction.h \
ucfunction.cc
CLEANFILES = *~
|