apps-projectcenter/Modules/Debuggers/ProjectCenter/GNUmakefile
Gregory John Casamento 55e2966fb3 * Modules/Debuggers/ProjectCenter/GNUmakefile
* Modules/Debuggers/ProjectCenter/PTYView.h
	* Modules/Debuggers/ProjectCenter/PTYView.m: Change code to use
	openpty(...).


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27487 72102866-910b-0410-8b05-ffd578937521
2009-01-01 18:01:42 +00:00

55 lines
1,017 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/continue_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
ADDITIONAL_NATIVE_LIBS += util
include ../../GNUmakefile.bundles
include $(GNUSTEP_MAKEFILES)/bundle.make