Release 951212
[wine.git] / Wine.tmpl
blob1cc33203f2d0937d609cde3eaf0d5e94c3f01a0a
1 INCLUDES = -I$(TOP)/include -I$(TOP)
3 XCOMM Imake rules go here
5 /*
6  * WineRelocatableTarget - generate rules to produce a relocatable object
7  * file instead of a library.  
8  */
9 #ifndef WineRelocatableTarget
10 #define WineRelocatableTarget(objname,objlist,depobj)                           @@\
11 AllTarget(objname.o)                                                    @@\
12                                                                         @@\
13 objname.o: depobj                                                       @@\
14         $(RM) $@                                                        @@\
15         $(LD) $(LDCOMBINEFLAGS) objlist depobj -o $@
16 #endif /* WineRelocatableTarget */