]> git.localhorst.tv Git - l2e.git/blob - makefile.defs
new language, new compiler
[l2e.git] / makefile.defs
1 L2_SRCS := \
2 ../test-data/constants.l2s \
3 ../test-data/ikaris.l2s \
4 ../test-data/items.l2s \
5 ../test-data/spells.l2s \
6 ../test-data/test.l2s
7
8 L2_OBJS := \
9 ../test-data/constants.l2o \
10 ../test-data/ikaris.l2o \
11 ../test-data/items.l2o \
12 ../test-data/spells.l2o \
13 ../test-data/test.l2o
14
15 ../test-data/%.l2o: ../test-data/%.l2s
16         @echo 'Building file: $<'
17         @echo 'Invoking: L2E Compiler'
18         ./l2e -o "$@" "$<"
19         @echo 'Finished building: $<'
20         @echo ' '