diff options
author | johnvg | 2006-11-08 13:00:31 +0000 |
---|---|---|
committer | johnvg | 2006-11-08 13:00:31 +0000 |
commit | 83d593d93585d931ed0c8bab7ef01c7d69b6b742 (patch) | |
tree | 1856cdb5009b643c0a071b8b2df8bbf6eccdc23a | |
parent | add var to exi_vars in function check_existential_var if an error occurs, (diff) |
add makefile for 64 bit linux
git-svn-id: https://svn.cs.ru.nl/repos/clean-compiler/trunk@1624 1f8540f1-abd5-4d5b-9d24-4c5ce8603e2d
-rw-r--r-- | backendC/CleanCompilerSources/Makefile.linux64 | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/backendC/CleanCompilerSources/Makefile.linux64 b/backendC/CleanCompilerSources/Makefile.linux64 new file mode 100644 index 0000000..69ac454 --- /dev/null +++ b/backendC/CleanCompilerSources/Makefile.linux64 @@ -0,0 +1,17 @@ +# This is for linux 64 +CC = gcc +CFLAGS = -D_SUN_ -DGNU_C -DG_A64 -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 |