34 lines
632 B
Makefile
34 lines
632 B
Makefile
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
# The application to be compiled
|
|
APP_NAME = GScheme
|
|
|
|
# The Objective-C source files to be compiled
|
|
|
|
GScheme_OBJC_FILES = SchemeTypes.m \
|
|
Primitive.m \
|
|
VScheme.m \
|
|
Document.m \
|
|
EnvWindow.m \
|
|
SCMTextView.m \
|
|
scheme.lex.m \
|
|
scheme.tab.m \
|
|
SchemeDelegate.m \
|
|
main.m
|
|
|
|
SHARED_CFLAGS += -g
|
|
AUXILIARY_TOOL_LIBS += -lfl
|
|
|
|
# The Resource files to be copied into the app's resources directory
|
|
GScheme_RESOURCE_FILES = Scheme/* Icons/*
|
|
|
|
-include GNUmakefile.preamble
|
|
|
|
-include GNUmakefile.local
|
|
|
|
include $(GNUSTEP_MAKEFILES)/application.make
|
|
|
|
-include GNUmakefile.postamble
|
|
|