File: GNUmakefile

package info (click to toggle)
adun.app 0.81-15
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 18,384 kB
  • sloc: objc: 70,952; ansic: 6,668; yacc: 394; python: 75; cpp: 36; makefile: 33; xml: 15; awk: 3
file content (49 lines) | stat: -rwxr-xr-x 1,053 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

include $(GNUSTEP_MAKEFILES)/common.make

LIBRARY_NAME = libadun_base
libadun_base_HEADER_FILES_INSTALL_DIR = /Base
libadun_base_INCLUDE_DIRS = -I../

CC = $(ADUN_LIBRARY_COMPILER)
ifneq (,$(findstring gcc,$(CC)))
	libadun_base_CFLAGS = -W -static -O3
else
	libadun_base_CFLAGS = -Wbrief -xP -ip -static -O3 -mtune=pentium4 -c99 
endif

libadun_base_C_FILES = \
AdHarmonicBond.c \
AdEnzymixBond.c \
AdEnzymixAngle.c \
AdHarmonicAngle.c \
AdFourierTorsion.c \
AdHarmonicImproperTorsion.c \
AdCoulombAndLennardJonesA.c \
AdCoulombAndLennardJonesB.c \
AdLinkedList.c \
AdMatrix.c \
AdGeneralizedBornFunctions.c \
AdQuaternion.c \
AdQuadratureFunctions.c \
AdSorter.c \
AdVector.c \
AdVolumeFunctions.c \
AdBaseFunctions.c

libadun_base_HEADER_FILES = \
AdForceFieldFunctions.h \
AdGeneralizedBornFunctions.h \
AdMatrix.h \
AdQuaternion.h \
AdSorter.h \
AdVector.h \
AdQuadratureFunctions.h \
AdVolumeFunctions.h \
AdBaseFunctions.h \
AdLinkedList.h 

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