741e75bc82
- Stagify - Pass maintainership to submitter ASL can generate code for totally different processors. These are implemented: Motorola 68000..68030,683xx including math co-processor and MMU; DSP56000; Motorola/IBM MPC601/MPC505/PPC403; 6800, 6805, 6809, 68(HC)11 and Hitachi 6301 Hitachi 6309, H8 and SH7000/7600 Rockwell 6502 and 65(S)C02 CMD 65816 Mitsubishi MELPS-740; MELPS-7700; MELPS-4500 and M16 Intel MCS-48/41, MCS-51, MCS-96 and 8080/8085 AMD 29K Siemens 80C166/167 Zilog Z80, Z180, Z380 and Z8 Toshiba TLCS-900(L), TLCS-90, TLCS-870, TLCS-47 and TLCS-9000 Microchip PIC16C54..16C57, PIC16C84/PIC16C64 and PIC17C42 SGS-Thomson ST62xx and 6804 Texas Instruments TMS32010/32015, TMS3202x, TMS320C3x and TMS370xxx NEC uPD 78(C)1x and uPD 75xxx (a.k.a. 75K0) WWW: http://john.ccac.rwth-aachen.de:8000/as/ PR: 189648 Submitted by: "Daniel O'Connor" <doconnor@gsoft.com.au>
33 lines
1 KiB
Modula-2
33 lines
1 KiB
Modula-2
# -------------------------------------------------------------------------
|
|
# 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 = ${STAGEDIR}/${PREFIX}/bin
|
|
# *INST are where things are installed to, vs where they are searched for
|
|
INCDIR = ${PREFIX}/share/asl
|
|
INCDIRINST = ${STAGEDIR}/${PREFIX}/share/asl
|
|
LIBDIR = ${PREFIX}/share/asl
|
|
LIBDIRINST = ${STAGEDIR}/${PREFIX}/share/asl
|
|
MANDIR = ${STAGEDIR}/${PREFIX}/man
|
|
DOCDIR =
|
|
|
|
# -------------------------------------------------------------------------
|
|
# 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
|