mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-23 11:51:08 +00:00
42 lines
549 B
Text
42 lines
549 B
Text
|
#
|
||
|
# GNUmakefile - Build preferences
|
||
|
#
|
||
|
PACKAGE_NAME = Build
|
||
|
include $(GNUSTEP_MAKEFILES)/common.make
|
||
|
|
||
|
#
|
||
|
# Bundle
|
||
|
#
|
||
|
BUNDLE_NAME = Build
|
||
|
BUNDLE_EXTENSION = .preferences
|
||
|
Build_PRINCIPAL_CLASS = PCBuildPrefs
|
||
|
|
||
|
|
||
|
#
|
||
|
# Additional libraries
|
||
|
#
|
||
|
Build_LIBRARIES_DEPEND_UPON +=
|
||
|
|
||
|
#
|
||
|
# Resource files
|
||
|
#
|
||
|
Build_RESOURCE_FILES= \
|
||
|
Resources/BuildPrefs.gorm \
|
||
|
Resources/Info.table
|
||
|
|
||
|
#
|
||
|
# Header files
|
||
|
#
|
||
|
Build_HEADERS= \
|
||
|
PCBuildPrefs.h
|
||
|
|
||
|
#
|
||
|
# Class files
|
||
|
#
|
||
|
Build_OBJC_FILES= \
|
||
|
PCBuildPrefs.m
|
||
|
|
||
|
include ../../GNUmakefile.bundles
|
||
|
include $(GNUSTEP_MAKEFILES)/bundle.make
|
||
|
|