diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -66,7 +66,10 @@ test.exe: test.o $(TARGETS) | |||
66 | testdll.dll: testdll.c | 66 | testdll.dll: testdll.c |
67 | $(CC) -shared -o $@ $^ | 67 | $(CC) -shared -o $@ $^ |
68 | 68 | ||
69 | test: $(TARGETS) test.exe testdll.dll | 69 | testdll3.dll: testdll3.c |
70 | $(CC) -shared -o $@ $^ | ||
71 | |||
72 | test: $(TARGETS) test.exe testdll.dll testdll3.dll | ||
70 | $(WINE) test.exe | 73 | $(WINE) test.exe |
71 | 74 | ||
72 | clean:: | 75 | clean:: |
@@ -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 | ||
79 | distclean: clean | 82 | distclean: clean |
80 | rm -f config.mak | 83 | rm -f config.mak |