Release 940301
[wine/gsoc-2012-control.git] / if1632 / Imakefile
blob6803aaaa42bf4a010415c37a1ffde50e05612e38
1 #include "../autoconf.h"
2 #include "../Wine.tmpl"
4 MODULE = if1632
6 SRCS = \
7         call.S \
8         callback.c \
9         relay.c
12  * Hack alert. There appear to be no object files, 'cause a very
13  * nasty rule below links *.o together, which is a generally bad idea,
14  * but I can't see how else to do it.
15  */
16 OBJS = \
17         call.o \
18         callback.o \
19         relay.o
22  * If you add a new spec file, copy one of these lines
23  */
24 MakeDllFromSpec(gdi,$(TOP)/$(MODULE))
25 MakeDllFromSpec(kernel,$(TOP)/$(MODULE))
26 MakeDllFromSpec(keyboard,$(TOP)/$(MODULE))
27 MakeDllFromSpec(shell,$(TOP)/$(MODULE))
28 MakeDllFromSpec(sound,$(TOP)/$(MODULE))
29 MakeDllFromSpec(unixlib,$(TOP)/$(MODULE))
30 MakeDllFromSpec(user,$(TOP)/$(MODULE))
31 MakeDllFromSpec(win87em,$(TOP)/$(MODULE))
32 MakeDllFromSpec(winsock,$(TOP)/$(MODULE))
35  * Yes I know *.o is not very clever, but can you do it cleaner ?
36  */
37 WineRelocatableTarget($(TOP)/$(MODULE),*.o,)
39 $(TOP)/$(MODULE).o: $(OBJS)
41 clean::
42         $(RM) dll* dtb*
44 depend::
46 includes::