blob: 784fbc5eda7ecc990f1098cfaac449614f8cd255 (
plain)
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
|
# -------------------------------------------------------------------------
# choose your compiler (must be ANSI-compliant!) and linker command, plus
# any additionally needed flags
CC = cc
LD = cc -non_shared -om
CFLAGS = -std1 -O5 -Olimit 3000 -tune ev5 -fast
# ^^^^^^^^^
# |||||||||
# adapt this to your target cpu (ev4 or ev5)
# -------------------------------------------------------------------------
# directories where binaries, includes, and manpages should go during
# installation
BINDIR = /usr/local/bin
INCDIR = /usr/local/include/asl
MANDIR = /usr/local/man
LIBDIR = /usr/local/lib/asl
DOCDIR = /usr/local/doc/asl
# -------------------------------------------------------------------------
# character encoding to use (choose one of them)
CHARSET = CHARSET_ISO8859_1
# CHARSET = CHARSET_ASCII7
# CHARSET = CHARSET_IBM437
|