diff options
| -rw-r--r-- | miasm/tools/emul_lib/Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/miasm/tools/emul_lib/Makefile b/miasm/tools/emul_lib/Makefile deleted file mode 100644 index 5365160b..00000000 --- a/miasm/tools/emul_lib/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -CFLAGS=-Wall -I/usr/include/python2.6 -lpython2.6 -CC = gcc -all: libcodenat.so libcodenat_tcc.so libcodenat_interface.so - -libcodenat_interface.so: libcodenat_interface.c - $(CC) $(CFLAGS) -shared -o $@ $< -lm -lcodenat -L`pwd` -Wl,-rpath,`pwd` - -libcodenat.so: libcodenat.c - $(CC) $(CFLAGS) -shared -o $@ $< -lm - -libcodenat_tcc.so: libcodenat_tcc.c - $(CC) $(CFLAGS) -shared -o $@ $< -ldl /usr/lib/i386-linux-gnu/libtcc.a - - - -test: main.o libcodenat.a - $(CC) $< $(CFLAGS) -L. -L/usr/lib -lcodenat -lpython2.6 - -clean: - rm -f libcodenat.so libcodenat_interface.so libcodenat_interface.o libcodenat.o a.out libcodenat_tcc.o libcodenat_tcc.so |