File: GNUmakefile

package info (click to toggle)
gnustep-examples 1%3A1.4.0%2Bgit20210703-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,164 kB
  • sloc: objc: 17,202; makefile: 56
file content (54 lines) | stat: -rw-r--r-- 747 bytes parent folder | download
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
43
44
45
46
47
48
49
50
51
52
53
54
include $(GNUSTEP_MAKEFILES)/common.make

#
# Application
#
VERSION = 0.1
PACKAGE_NAME = PowerPaint
APP_NAME = PowerPaint
PowerPaint_APPLICATION_ICON = 
PowerPaint_MAIN_MODEL_FILE = PowerPaint.gorm


#
# Resource files
#
PowerPaint_RESOURCE_FILES = \
PowerPaint.gorm \
Document.gorm


#
# Header files
#
PowerPaint_HEADER_FILES = \
PPController.h \
PPDocumentClass.h \
PPDocumentView.h \
PPToolsPanel.h


#
# Class files
#
PowerPaint_OBJC_FILES = \
PPController.m \
PPDocumentClass.m \
PPDocumentView.m \
PPToolsPanel.m


#
# Other sources
#
PowerPaint_OBJC_FILES += \
PPMain.m


#
# Makefiles
#
-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/application.make
-include GNUmakefile.postamble