diff options
| author | serpilliere <devnull@localhost> | 2011-08-22 09:48:16 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2011-08-22 09:48:16 +0200 |
| commit | 0f9398438ecaecfb66ef0baf30a02cad28d3d5c1 (patch) | |
| tree | 1822d14ce0072ad24c924d5eea83328ded275d36 | |
| parent | 204f72baee885f7f011b75797b3e2b816a5af5ec (diff) | |
| download | miasm-0f9398438ecaecfb66ef0baf30a02cad28d3d5c1.tar.gz miasm-0f9398438ecaecfb66ef0baf30a02cad28d3d5c1.zip | |
remove unused libcodenat makefile (use main makefile)
| -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 |