File: GNUmakefile

package info (click to toggle)
adun.app 0.8.2-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 6,824 kB
  • ctags: 713
  • sloc: objc: 49,683; ansic: 4,680; sh: 523; python: 79; makefile: 67; cpp: 33
file content (33 lines) | stat: -rwxr-xr-x 754 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

include $(GNUSTEP_MAKEFILES)/common.make

TOOL_NAME=AdunCore

export ADUN_LIBRARY_COMPILER ?= gcc
export GSL_LIB_DIR ?= /usr/local/lib
export GSL_INCLUDE_DIR ?= /usr/local/include

ifeq ($(ADUN_LIBRARY_COMPILER), icc)
	AdunCore_TOOL_LIBS =   -lAdunKernel -ladun_base -lgsl -lgslcblas -lfl -limf -lsvml -lm -ladun_base 
else
	AdunCore_TOOL_LIBS = -lAdunKernel -ladun_base  -lgsl -lgslcblas 
endif

GNUSTEP_INSTALLATION_DOMAIN=USER
AdunCore_HAS_RESOURCE_BUNDLE=yes
AdunCore_INCLUDE_DIRS = -IAdunKernel/Headers

SUBPROJECTS = \
Base \
AdunKernel \

AdunCore_RESOURCE_FILES = \

AdunCore_OBJC_FILES = \
main.m 

-include GNUmakefile.preamble
include $(GNUSTEP_MAKEFILES)/aggregate.make
include $(GNUSTEP_MAKEFILES)/tool.make
-include GNUmakefile.postamble