You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
775 B

Index: Makefile
--- Makefile.orig 2010-08-28 10:38:16.000000000 +0200
+++ Makefile 2010-08-28 10:41:00.000000000 +0200
@@ -16,6 +16,9 @@
gcc -c -g -Winline -std=c99 -D_XOPEN_SOURCE=600 debug.c
gcc -o debug -g -std=c99 debug.o jitlib-core.o
+libmyjit.a: jitlib-core.o
+ ar cr libmyjit.a jitlib-core.o
+ ranlib libmyjit.a
jitlib-core.o: myjit/jitlib.h myjit/jitlib-core.h myjit/jitlib-core.c myjit/jitlib-debug.c myjit/x86-codegen.h myjit/x86-specific.h myjit/reg-allocator.h myjit/flow-analysis.h myjit/set.h myjit/amd64-specific.h myjit/amd64-codegen.h myjit/sparc-codegen.h myjit/sparc-specific.h myjit/llrb.c myjit/reg-allocator.h myjit/rmap.h myjit/cpu-detect.h myjit/x86-common-stuff.c
gcc -c -g -Winline -std=c99 -D_XOPEN_SOURCE=600 myjit/jitlib-core.c