File: CONFIGVARS

package info (click to toggle)
aranym 0.9.0final-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,232 kB
  • ctags: 14,742
  • sloc: cpp: 65,421; ansic: 28,283; sh: 3,209; asm: 3,064; makefile: 787; perl: 494; objc: 225; pascal: 37
file content (75 lines) | stat: -rw-r--r-- 833 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# 
# 
# cross compiling
CROSS = yes
#CROSS = no

#
# target and host compiler
# 
ifeq ($(CROSS),yes)

CROSSPREFIX=m68k-atari-mint-

NATIVECC = gcc
NATIVECFLAGS = -O -Wall
CRLF = echo crlf -s

else

CROSSPREFIX=

NATIVECC = gcc
NATIVECFLAGS = -O -Wall
CRLF  = crlf -s

endif

CC = $(CROSSPREFIX)gcc
AS = $(CC)
AR = $(CROSSPREFIX)ar
RANLIB = $(CROSSPREFIX)ranlib
STRIP = $(CROSSPREFIX)strip
FLAGS = $(CROSSPREFIX)flags

# 
# some tools
# 
YACC  = bison -dk
LEX   = flex
MV    = mv
CP    = cp
RM    = rm -f
TOUCH = touch
MKDIR = mkdir
SED   = sed


#
# optimizations
# 
OPTS = -O2 -finline-functions -fomit-frame-pointer


#
# warning options
#
WARN = \
	-Wall \
	-Wmissing-prototypes \
	-Wshadow \
	-Wpointer-arith \
	-Wcast-qual \
	-Waggregate-return

#	-Winline \
#
# default definitions
#
DEFINITIONS = 


#
# model type
#
MODEL =