2008-12-16 21:31:41 +00:00
|
|
|
#
|
|
|
|
# GNUmakefile - ProjectCenter.debugger
|
|
|
|
#
|
2008-12-19 13:13:49 +00:00
|
|
|
PACKAGE_NAME = ProjectCenter
|
2008-12-16 21:31:41 +00:00
|
|
|
include $(GNUSTEP_MAKEFILES)/common.make
|
|
|
|
|
|
|
|
#
|
|
|
|
# Bundle
|
|
|
|
#
|
|
|
|
BUNDLE_NAME = ProjectCenter
|
|
|
|
BUNDLE_EXTENSION = .debugger
|
|
|
|
ProjectCenter_PRINCIPAL_CLASS = PCDebugger
|
|
|
|
|
|
|
|
#
|
|
|
|
# Additional libraries
|
|
|
|
#
|
|
|
|
ProjectCenter_LIBRARIES_DEPEND_UPON +=
|
|
|
|
|
|
|
|
#
|
|
|
|
# Resource files
|
|
|
|
#
|
|
|
|
ProjectCenter_RESOURCE_FILES= \
|
2008-12-22 23:45:43 +00:00
|
|
|
Resources/PCDebugger.gorm \
|
2008-12-28 07:19:45 +00:00
|
|
|
Resources/Info.table \
|
|
|
|
Resources/go_button.png \
|
2008-12-30 03:21:13 +00:00
|
|
|
Resources/continue_button.png \
|
2008-12-28 07:19:45 +00:00
|
|
|
Resources/pause_button.png \
|
|
|
|
Resources/restart_button.png \
|
|
|
|
Resources/next_button.png \
|
|
|
|
Resources/stepin_button.png \
|
2008-12-30 01:17:05 +00:00
|
|
|
Resources/stepout_button.png \
|
|
|
|
Resources/up_button.png \
|
|
|
|
Resources/down_button.png
|
2008-12-28 07:19:45 +00:00
|
|
|
|
2008-12-16 21:31:41 +00:00
|
|
|
#
|
|
|
|
# Header files
|
|
|
|
#
|
|
|
|
ProjectCenter_HEADERS= \
|
|
|
|
PCDebugger.h \
|
2008-12-25 15:46:41 +00:00
|
|
|
PCDebugggerView.h \
|
|
|
|
PTYView.h
|
2008-12-16 21:31:41 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Class files
|
|
|
|
#
|
|
|
|
ProjectCenter_OBJC_FILES= \
|
|
|
|
PCDebugger.m \
|
2008-12-25 15:46:41 +00:00
|
|
|
PCDebuggerView.m \
|
|
|
|
PTYView.m
|
2008-12-16 21:31:41 +00:00
|
|
|
|
2009-01-01 18:01:42 +00:00
|
|
|
|
|
|
|
ADDITIONAL_NATIVE_LIBS += util
|
|
|
|
|
2008-12-16 21:31:41 +00:00
|
|
|
include ../../GNUmakefile.bundles
|
|
|
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|