Fix handling of unix absolute paths in DOSFS_GetFullName and
[wine/multimedia.git] / programs / Makeprog.rules.in
blob1dc0465dd19b3c6263b8372811026571b077a93a
1 # Global rules for building a Winelib program     -*-Makefile-*-
3 # Each individual makefile should define the following variables:
4 # MODULE       : name of the main module being built
5 # EXTRALIBS    : extra libraries to link in (optional)
6 # EXTRADEFS    : extra symbol definitions, like -DWINELIB (optional)
8 # plus all variables required by the global Make.rules.in
11 DEFS       = @DLLFLAGS@ -DSTRICT -DNONAMELESSUNION -DNONAMELESSSTRUCT $(EXTRADEFS)
12 LDDLLFLAGS = @LDDLLFLAGS@
13 ALL_OBJS   = $(MODULE).spec.o $(OBJS)
14 ALL_LIBS   = $(LIBWINE) $(EXTRALIBS) $(LIBS)
15 SYMBOLFILE = $(MODULE).tmp.o
17 all: $(MODULE)
19 @MAKE_RULES@
21 # Rules for main module
23 $(MODULE).so: $(ALL_OBJS) Makefile.in
24         $(LDSHARED) $(LDDLLFLAGS) $(ALL_OBJS) -o $@ $(ALL_LIBS)
26 $(MODULE): $(MODULE).so
27         $(RM) $(MODULE) && $(LN_S) $(TOPOBJDIR)/wine $(MODULE)
29 # Rules for checking that no imports are missing
31 checklink:: $(MODULE).so
32         $(CC) -o checklink $(TOPSRCDIR)/library/checklink.c $(MODULE).so $(ALL_LIBS) && $(RM) checklink
34 # Rules for testing
36 $(TESTRESULTS): $(MODULE).so
38 # Rules for debug channels
40 debug_channels: dummy
41         $(TOPSRCDIR)/tools/make_debug $(MODULE).spec $(C_SRCS)
43 # Rules for installation
45 install:: $(MODULE).so
46         [ -d $(bindir) ] || $(MKDIR) $(bindir)
47         $(INSTALL_PROGRAM) $(MODULE).so $(bindir)/$(MODULE).so
48         cd $(bindir) && $(RM) $(MODULE) && $(LN_S) wine $(MODULE)
50 uninstall::
51         cd $(bindir) && $(RM) $(MODULE) $(MODULE).so
53 clean::
54         $(RM) $(MODULE)