diff options
author | John van Groningen | 2012-03-14 12:16:05 +0000 |
---|---|---|
committer | John van Groningen | 2012-03-14 12:16:05 +0000 |
commit | e549448d07973d097bad5443538a99ab58536a6d (patch) | |
tree | 339cbff73b3effb1fe92425844e8b836d0ab0f12 /Makefile.linux64t | |
parent | safe global abc machine registers before ccall with G on 64 bit linux with th... (diff) |
add Makefile for 64 bit linux thread safe code generator
Diffstat (limited to 'Makefile.linux64t')
-rw-r--r-- | Makefile.linux64t | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.linux64t b/Makefile.linux64t new file mode 100644 index 0000000..7c779ed --- /dev/null +++ b/Makefile.linux64t @@ -0,0 +1,14 @@ + +CC = gcc +CFLAGS = -DI486 -DGNU_C -DLINUX -DLINUX_ELF -DG_AI64 -DTHREAD64 -O -fomit-frame-pointer + +OBJECTS = cg.o cgcalc.o cgcode.o cginput.o cginstructions.o \ + cglin.o cgopt.o cgaas.o cgawas.o cgstack.o + +cg: $(OBJECTS) + gcc -s $(OBJECTS) -o $@ + +clean: + rm $(OBJECTS) + +# DO NOT DELETE |