Release 980601
[wine] / Make.rules.in
1 # Global rules shared by all makefiles     -*-Makefile-*-
2 #
3 # Each individual makefile should define the following variables:
4 # TOPSRCDIR    : top-level source directory
5 # TOPOBJDIR    : top-level object directory
6 # SRCDIR       : source directory for this module
7 # MODULE       : name of the module being built
8 # C_SRCS       : C sources for the module (optional)
9 # ASM_SRCS     : assembly sources (optional)
10 # GEN_ASM_SRCS : generated assembly sources (optional)
11 # RC_SRCS      : resource source files (optional)
12 # EXTRA_SRCS   : extra source files for make depend (optional)
13 # EXTRA_OBJS   : extra object files (optional)
14 # WRCEXTRA     : extra wrc flags (e.g. '-p _SysRes') (optional)
15
16 # First some useful definitions
17
18 SHELL     = /bin/sh
19 CC        = @CC@
20 CPP       = @CPP@
21 CFLAGS    = @CFLAGS@
22 OPTIONS   = @OPTIONS@ -D_REENTRANT
23 X_CFLAGS  = @X_CFLAGS@
24 X_LIBS    = @X_LIBS@
25 XPM_LIB   = -lXpm
26 XLIB      = @X_PRE_LIBS@ -lXext -lX11 @X_EXTRA_LIBS@
27 WINELIB   = $(WINESTUB) $(TOPOBJDIR)/@LIB_TARGET@
28 LIBS      = @LIBS@
29 YACC      = @YACC@
30 LEX       = @LEX@
31 LEXLIB    = @LEXLIB@
32 RANLIB    = @RANLIB@
33 LN_S      = @LN_S@
34 DIVINCL   = -I$(TOPSRCDIR)/include -I$(TOPOBJDIR)/include -I$(SRCDIR) -I.
35 ALLCFLAGS = $(CFLAGS) $(DEFS) $(OPTIONS) $(DIVINCL) $(X_CFLAGS)
36 LDCOMBINE = ld -r
37 AR        = ar rc
38 RM        = rm -f
39 MKDIR     = mkdir
40 C2MAN     = @C2MAN@
41 LINT      = lclint
42 LINTFLAGS = +posixlib +gnuextensions +trytorecover
43 BUILD     = $(TOPOBJDIR)/tools/build@PROGEXT@
44 MAKEDEP   = $(TOPOBJDIR)/tools/makedep@PROGEXT@
45 WINERC    = $(TOPOBJDIR)/rc/winerc@PROGEXT@
46 WRC       = $(TOPOBJDIR)/tools/wrc/wrc@PROGEXT@
47 WRCFLAGS  = -t -c
48 WINESTUB  = $(TOPOBJDIR)/library/winestub.o
49 SUBMAKE   = $(MAKE) 'CC=$(CC)' 'CFLAGS=$(CFLAGS)' 'OPTIONS=$(OPTIONS)'
50 @SET_MAKE@
51
52 # Installation infos
53
54 INSTALL         = @INSTALL@
55 INSTALL_PROGRAM = @INSTALL_PROGRAM@
56 INSTALL_DATA    = @INSTALL_DATA@
57 prefix          = @prefix@
58 exec_prefix     = @exec_prefix@
59 bindir          = @bindir@
60 libdir          = @libdir@
61 infodir         = @infodir@
62 mandir          = @mandir@/man1
63 manext          = .1
64 includedir      = @includedir@/wine
65
66 OBJS = $(C_SRCS:.c=.o) $(GEN_ASM_SRCS:.s=.o) $(ASM_SRCS:.S=.o) \
67        $(RC_SRCS:.rc=.o) $(EXTRA_OBJS)
68
69 # Implicit rules
70
71 .SUFFIXES: .rc .res
72
73 .c.o:
74         $(CC) -c $(ALLCFLAGS) -o $*.o $<
75
76 .s.o:
77         $(CC) -c -o $*.o $<  
78
79 .S.o:
80         $(CC) -c -o $*.o $<  
81
82 .rc.s:
83         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) $<
84
85 .rc.h:
86         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -nh $<
87
88 .rc.res:
89         $(WRC) $(WRCFLAGS) $(WRCEXTRA) $(DIVINCL) -r $<
90
91 .res.s:
92         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -b $<
93
94 .res.h:
95         $(WRC) $(WRCFLAGS) $(WRCEXTRA) -bnh $<
96
97 # Obsolete
98 #.rc.c:
99 #       echo "#include \"windows.h\"" >$*-tmp.c
100 #       echo WINDOWS_H_ENDS_HERE >>$*-tmp.c
101 #       cat $< >>$*-tmp.c
102 #       $(CPP) $(DEFS) $(OPTIONS) $(DIVINCL) -DRC_INVOKED -P $*-tmp.c | sed -e '1,/^WINDOWS_H_ENDS_HERE/d' | $(WINERC) $(RCFLAGS) -c -o $* -p $*
103 #       $(RM) $*-tmp.c
104 #
105 #.rc.h:
106 #       echo "#include \"windows.h\"" >$*-tmp.c
107 #       echo WINDOWS_H_ENDS_HERE >>$*-tmp.c
108 #       cat $< >>$*-tmp.c
109 #       $(CPP) $(DEFS) $(OPTIONS) $(DIVINCL) -DRC_INVOKED -P $*-tmp.c | sed -e '1,/^WINDOWS_H_ENDS_HERE/d' | $(WINERC) $(RCFLAGS) -c -o $* -p $*
110 #       $(RM) $*-tmp.c
111 #
112
113
114 # Rule to rebuild the resource compiler
115
116 $(WINERC) check_winerc:
117         cd $(TOPOBJDIR)/rc; $(SUBMAKE) winerc@PROGEXT@
118
119 $(WRC) check_wrc:
120         cd $(TOPOBJDIR)/tools/wrc; $(SUBMAKE) wrc@PROGEXT@
121
122 # Rule to rebuild the 'makedep' program
123
124 $(MAKEDEP) check_makedep:
125         cd $(TOPOBJDIR)/tools; $(SUBMAKE) makedep@PROGEXT@
126
127 # Rule to rebuild the 'build' program
128
129 $(BUILD) checkbuild:
130         cd $(TOPOBJDIR)/tools; $(SUBMAKE) build@PROGEXT@
131
132 # Rule for main module
133
134 $(MODULE).o: $(OBJS)
135         $(LDCOMBINE) $(OBJS) -o $(MODULE).o
136
137 # Rule for man pages
138
139 man: $(C_SRCS)
140         for i in $(C_SRCS); do $(C2MAN) -L -o$(TOPOBJDIR)/documentation/man3w -S3w $(DIVINCL) $$i; done
141
142 # Rule for linting
143
144 lint:
145         for i in $(C_SRCS); do $(LINT) $(LINTFLAGS) -D__WINE__ $(OPTIONS) $(DIVINCL) $(X_CFLAGS) $$i; done
146
147 # Rule for html pages
148
149 html: $(C_SRCS)
150         for i in $(C_SRCS); do $(C2MAN) -L -o$(TOPOBJDIR)/documentation/html -Th -iwindows.h  $(DIVINCL) $$i; done
151
152 # Misc. rules
153
154 depend:: $(MAKEDEP) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS)
155         $(MAKEDEP) $(DIVINCL) -C$(SRCDIR) $(C_SRCS) $(RC_SRCS) $(EXTRA_SRCS)
156
157 clean::
158         $(RM) *.o \#*\# *~ *% *.bak *.orig *.rej *.flc *-tmp.c y.tab.c y.tab.h lex.yy.c core $(GEN_ASM_SRCS) $(RC_SRCS:.rc=.s) $(RC_SRCS:.rc=.h) $(PROGRAMS)
159
160 dummy:
161
162 # End of global rules