aboutsummaryrefslogtreecommitdiff
path: root/backendC/CleanCompilerSources
diff options
context:
space:
mode:
authorjohnvg2017-02-07 16:02:41 +0000
committerjohnvg2017-02-07 16:02:41 +0000
commit6968d450740c62bbd80afcb70a545e3d79d04872 (patch)
treee17efb0d3bbc001dca8f2925028762bfa0c5ee56 /backendC/CleanCompilerSources
parentfix definition of generic function only in the definition module, (diff)
add Makefile.arm for ARM (with gcc -marm)
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@2772 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
Diffstat (limited to 'backendC/CleanCompilerSources')
-rw-r--r--backendC/CleanCompilerSources/Makefile.arm17
1 files changed, 17 insertions, 0 deletions
diff --git a/backendC/CleanCompilerSources/Makefile.arm b/backendC/CleanCompilerSources/Makefile.arm
new file mode 100644
index 0000000..092fcdd
--- /dev/null
+++ b/backendC/CleanCompilerSources/Makefile.arm
@@ -0,0 +1,17 @@
+# This is for ARM
+CC = gcc
+CFLAGS = -marm -D_SUN_ -DGNU_C -O -fomit-frame-pointer
+AR = ar
+RANLIB = ranlib
+
+OBJECTS = \
+ backend.o backendsupport.o buildtree.o checker_2.o checksupport.o \
+ cocl.o codegen1.o codegen2.o codegen3.o codegen.o comparser_2.o \
+ compiler.o comsupport.o dbprint.o instructions.o optimisations.o \
+ pattern_match_2.o result_state_database.o sa.o scanner_2.o \
+ set_scope_numbers.o settings.o unix_io.o statesgen.o tcsupport_2.o \
+ typeconv_2.o version.o
+
+backend.a: $(OBJECTS)
+ $(AR) cur backend.a $(OBJECTS)
+ $(RANLIB) backend.a