1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
#
# GNUmakefile - LibraryProject
#
PACKAGE_NAME = ProjectCenter
include $(GNUSTEP_MAKEFILES)/common.make
#
# Bundle
#
BUNDLE_NAME = Library
BUNDLE_EXTENSION = .project
Library_PRINCIPAL_CLASS = PCLibProject
#
# Additional libraries
#
Library_LIBRARIES_DEPEND_UPON +=
#
# Resource files
#
Library_RESOURCE_FILES= \
Resources/PC.project \
Resources/Version \
Resources/Inspector.gorm \
Resources/Info.table
#
# Header files
#
Library_HEADERS= \
PCLibProject.h
#
# Class files
#
Library_OBJC_FILES= \
PCLibProject.m
include ../../GNUmakefile.bundles
include $(GNUSTEP_MAKEFILES)/bundle.make
|