apps-projectcenter/Modules/Debuggers/ProjectCenter/GNUmakefile
Gregory John Casamento f41650b9b8 * Documentation/TODO: Update progress.
* Modules/Debuggers/ProjectCenter/GNUmakefile: Add images
	to makefile.
	* Modules/Debuggers/ProjectCenter/PCDebugger.m: Add up and down
	methods to implement this behaviour.
	* Modules/Debuggers/ProjectCenter/Resources/down_button.png
	* Modules/Debuggers/ProjectCenter/Resources/up_button.png:
	Images for the up/down buttons.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27459 72102866-910b-0410-8b05-ffd578937521
2008-12-30 01:17:05 +00:00

51 lines
948 B
Makefile

#
# GNUmakefile - ProjectCenter.debugger
#
PACKAGE_NAME = ProjectCenter
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= \
Resources/PCDebugger.gorm \
Resources/Info.table \
Resources/go_button.png \
Resources/pause_button.png \
Resources/restart_button.png \
Resources/next_button.png \
Resources/stepin_button.png \
Resources/stepout_button.png \
Resources/up_button.png \
Resources/down_button.png
#
# Header files
#
ProjectCenter_HEADERS= \
PCDebugger.h \
PCDebugggerView.h \
PTYView.h
#
# Class files
#
ProjectCenter_OBJC_FILES= \
PCDebugger.m \
PCDebuggerView.m \
PTYView.m
include ../../GNUmakefile.bundles
include $(GNUSTEP_MAKEFILES)/bundle.make