File: GNUmakefile

package info (click to toggle)
gworkspace 0.8.8-1.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 20,792 kB
  • sloc: objc: 70,525; sh: 305; makefile: 117
file content (39 lines) | stat: -rw-r--r-- 852 bytes parent folder | download | duplicates (5)
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
PACKAGE_NAME = gworkspace
include $(GNUSTEP_MAKEFILES)/common.make

VERSION = 0.7

#
# MAIN APP
#
APP_NAME = Recycler
Recycler_PRINCIPAL_CLASS = Recycler
Recycler_APPLICATION_ICON=Recycler.tiff

Recycler_HAS_RESOURCE_BUNDLE = yes

Recycler_RESOURCE_FILES = \
    Resources/Images/* \
    Resources/English.lproj 

Recycler_LANGUAGES = Resources/English 

# The Objective-C source files to be compiled
Recycler_OBJC_FILES = main.m \
                     Recycler.m \
                     RecyclerView.m \
                     RecyclerIcon.m \
                     Preferences/RecyclerPrefs.m \
                     Dialogs/StartAppWin.m

ADDITIONAL_GUI_LIBS += -lFSNode

-include GNUmakefile.preamble

-include GNUmakefile.local

include $(GNUSTEP_MAKEFILES)/aggregate.make

include $(GNUSTEP_MAKEFILES)/application.make

-include GNUmakefile.postamble