diff options
author | tg <tg@FreeBSD.org> | 1997-06-20 08:13:47 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 1997-06-20 08:13:47 +0000 |
commit | 441d5b437a5020429e75c314b04218f742a640de (patch) | |
tree | fe0bc77781ce23e2ed367476f3f43b9f077d1853 /devel/asl/files | |
parent | 0a8b4207b6c8d0a74488d4b0dcc151ba7d95b5f1 (diff) | |
download | FreeBSD-ports-441d5b437a5020429e75c314b04218f742a640de.zip FreeBSD-ports-441d5b437a5020429e75c314b04218f742a640de.tar.gz |
Import of asl port. asl is an assembler for a wide range of
microcontrollers/-processors.
Diffstat (limited to 'devel/asl/files')
-rw-r--r-- | devel/asl/files/Makefile.def | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/devel/asl/files/Makefile.def b/devel/asl/files/Makefile.def new file mode 100644 index 0000000..57d756b --- /dev/null +++ b/devel/asl/files/Makefile.def @@ -0,0 +1,27 @@ +# ------------------------------------------------------------------------- +# choose your compiler (must be ANSI-compliant!) and linker command, plus +# any additionally needed flags + +LD = cc +LDFLAGS = -s + +# ------------------------------------------------------------------------- +# directories where binaries and includes should go during installation + +BINDIR = ${PREFIX}/bin +INCDIR = ${PREFIX}/share/asl + +# ------------------------------------------------------------------------- +# language AS will speak to you +# implemented so far: +# lang_DE = german +# lang_EN = english + +LANGRSC = lang_EN + +# ------------------------------------------------------------------------- +# character encoding to use (choose one of them) + +# CHARSET = CHARSET_ASCII7 +# CHARSET = CHARSET_IBM437 +CHARSET = CHARSET_ISO8859_1 |