File: GNUmakefile

package info (click to toggle)
mines.app 0.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny, squeeze
  • size: 96 kB
  • ctags: 12
  • sloc: objc: 526; makefile: 44
file content (25 lines) | stat: -rw-r--r-- 462 bytes parent folder | download | duplicates (2)
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

include $(GNUSTEP_MAKEFILES)/common.make

# The application to be compiled
APP_NAME = Mines

# The Objective-C source files to be compiled

Mines_OBJC_FILES = main.m  \
  Controller.m \
  Views.m

SHARED_CFLAGS     += -g

# The Resource files to be copied into the app's resources directory
Mines_RESOURCE_FILES = Icons/*

-include GNUmakefile.preamble

-include GNUmakefile.local

include $(GNUSTEP_MAKEFILES)/application.make

-include GNUmakefile.postamble