aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c02dce0..a0f5cb9 100644
--- a/Makefile
+++ b/Makefile
@@ -66,7 +66,10 @@ test.exe: test.o $(TARGETS)
66testdll.dll: testdll.c 66testdll.dll: testdll.c
67 $(CC) -shared -o $@ $^ 67 $(CC) -shared -o $@ $^
68 68
69test: $(TARGETS) test.exe testdll.dll 69testdll3.dll: testdll3.c
70 $(CC) -shared -o $@ $^
71
72test: $(TARGETS) test.exe testdll.dll testdll3.dll
70 $(WINE) test.exe 73 $(WINE) test.exe
71 74
72clean:: 75clean::
@@ -74,7 +77,7 @@ clean::
74 dlfcn.o \ 77 dlfcn.o \
75 libdl.dll libdl.a libdl.def libdl.dll.a libdl.lib libdl.exp \ 78 libdl.dll libdl.a libdl.def libdl.dll.a libdl.lib libdl.exp \
76 tmptest.c tmptest.dll \ 79 tmptest.c tmptest.dll \
77 test.exe testdll.dll 80 test.exe testdll.dll testdll3.dll
78 81
79distclean: clean 82distclean: clean
80 rm -f config.mak 83 rm -f config.mak