File: GNUmakefile

package info (click to toggle)
projectcenter.app 0.6.2%2Bgit20190606-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,968 kB
  • sloc: objc: 20,132; ansic: 1,463; makefile: 38
file content (42 lines) | stat: -rw-r--r-- 609 bytes parent folder | download | duplicates (8)
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