disable the unrecognized nls flag
[AROS-Contrib.git] / regina / makefile.amiga.gcc
blob077be6a64832fb67d3b31dc69a3102948b05422c
2 # Makefile for Regina REXX Interpreter
4 # Using gcc 2.95 under Amiga
6 # No support for DLLs under Amiga so no instructions applicable
8 #SHELL = command.com
9 SRCDIR=.
10 CC = gcc
11 LD = gcc
13 ifeq ($(DEBUG),Y)
14 OPTIMIZE = -g
15 LDOPT = -g
16 LDEXTRA=
17 else
18 OPTIMIZE = -O2 -DNDEBUG
19 LDOPT = -O2
20 LDEXTRA=
21 endif
23 ifeq ($(TRACEMEM),Y)
24 MEMTRACE = -DTRACEMEM
25 else
26 MEMTRACE =
27 endif
29 ifeq ($(FLISTS),N)
30 USEFLISTS = -DNOFLISTS
31 else
32 USEFLISTS =
33 endif
35 CEXTRA = -DPOSIX_SOURCE -DAMIGA -DGCC -funsigned-char
36 EEXTRA =
37 EXTQUEUE_OBJS = extstack.$(OBJ) rexxbif.$(OBJ)
38 EXTQUEUE_SHOBJS = #extstack.sho rexxbif.sho
39 DYN_COMP =
40 LIBS =
41 TCPLIBS =
42 SHLIBS =
43 SHL =
44 LD_RXLIB1=
45 LD_RXLIB2=
46 SHL_LD=
47 SHL_TARGETS= rxstack rxqueue
48 LDEXTRA1=
49 LIBPRE = lib
50 LIBFILE = regina
51 OBJECTS = $(OFILES)
52 OSAVE = .sav
53 MV= +ren
55 SHLFILE = regina
56 OBJ = o
57 EXE =
58 LIBPST = a
59 LIBEXE = ar
60 LIBFLAGS = cr $(LIBPRE)$(LIBFILE).$(LIBPST)
61 LIBLINK = -L. -l$(LIBFILE)
62 LINKSHL = $(LIBPRE)$(SHLFILE).$(SHL)
63 RXLIB = rxlib
64 RM = -delete
65 THREADING =
66 MT_FILE = mt_notmt
67 OS_FILE = os_other
69 RANLIB_LIB=-ranlib $(LIBPRE)$(LIBFILE).a
72 # If your compiler can handle the combination of: -c -o file.sho, then
73 # uncomment the macro CC2O and comment out the 3 macros before CC2O
75 CC2O=-o $@
77 # Include the common rules for the interpreter
79 include $(SRCDIR)/makefile.com
81 # End of makefile