fix remapping behavior. Remapping is only necessary if we are rendering on the workbe...
[AROS-Contrib.git] / rexx / lstring / makefile
blobb696aadf657d4611fb438875fddcc1545a8a53cf
1 # Top-level makefile for BREXX V2
3 # BREXX interpreter
4 # Version: 2.0
5 # Copyright (C) 1991-1998 Vassilis Vlachoudis (V.Vlachoudis@cern.ch)
7 # This interpreter is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 ############# INCLUDE #############
14 include ../make_cnf
16 ############# MACROS ##############
18 CCOPTIONS = $(CFLAGS) $(GREEK) $(MSDOS) -I$(INCDIR)
20 SOURCES = \
21 abbrev.c \
22 abs.c \
23 add.c \
24 atan2.c \
25 b2x.c \
26 bitand.c \
27 bitor.c \
28 bitxor.c \
29 bool.c \
30 c2d.c \
31 c2x.c \
32 center.c \
33 changest.c \
34 countstr.c \
35 charin.c \
36 charout.c \
37 chars.c \
38 compare.c \
39 copies.c \
40 d2c.c \
41 d2x.c \
42 datatype.c \
43 date.c \
44 dec.c \
45 delstr.c \
46 delword.c \
47 div.c \
48 equal.c \
49 errortxt.c \
50 expose.c \
51 format.c \
52 hashvalu.c \
53 inc.c \
54 index.c \
55 insert.c \
56 intdiv.c \
57 justify.c \
58 lastpos.c \
59 linein.c \
60 lineout.c \
61 lines.c \
62 lmath.c \
63 lower.c \
64 lstring.c \
65 mod.c \
66 mult.c \
67 neg.c \
68 overlay.c \
69 pow.c \
70 print.c \
71 read.c \
72 reverse.c \
73 right.c \
74 sign.c \
75 space.c \
76 stderr.c \
77 strip.c \
78 soundex.c \
79 sub.c \
80 substr.c \
81 subword.c \
82 time.c \
83 translat.c \
84 trunc.c \
85 upper.c \
86 verify.c \
87 word.c \
88 wordidx.c \
89 wordlen.c \
90 wordpos.c \
91 words.c \
92 write.c \
93 x2b.c \
94 x2c.c \
95 x2d.c \
96 xrange.c
98 OBJECTS = $(SOURCES:.c=.o)
100 ############# RULES ###############
102 .c.o:
103 $(CC) -c $(CCOPTIONS) $<
105 ############# TARGETS #############
107 default:
108 @echo "Specify a target configuration"
110 $(LIBDIR)/$(LSTR_LIB): $(OBJECTS)
111 $(RM) $@
112 $(MAKELIB) $@ *.o
114 clean:
115 $(RM) *.o *.cfg *.sym
117 targets: $(LIBDIR)/$(LSTR_LIB)