ntdll: Implement condition variable functions using keyed events.
[wine/wine-gecko.git] / Make.rules.in
blob947419e2cb8b7625d0ae044c1ca081fec7f4b348
1 # Global rules shared by all makefiles     -*-Makefile-*-
3 # Each individual makefile may define the following variables:
4 # C_SRCS       : C sources for the module
5 # OBJC_SRCS    : Objective-C sources for the module
6 # RC_SRCS      : resource source files
7 # EXTRA_OBJS   : extra object files
8 # IMPORTS      : dlls to import
9 # DELAYIMPORTS : dlls to import in delayed mode
10 # MODCFLAGS    : extra CFLAGS for this module
12 # First some useful definitions
14 ALLCFLAGS    = $(EXTRACFLAGS) $(CPPFLAGS) $(CFLAGS) $(MODCFLAGS)
15 IDLFLAGS     = $(EXTRAIDLFLAGS)
16 RCFLAGS      = --nostdinc $(PORCFLAGS)
18 OBJS = $(C_SRCS:.c=.o) $(BISON_SRCS:.y=.tab.o) $(LEX_SRCS:.l=.yy.o) $(OBJC_SRCS:.m=.o) \
19        $(RC_SRCS:.rc=.res) $(MC_SRCS:.mc=.res) $(EXTRA_OBJS)
21 ALLCROSSCFLAGS = $(CPPFLAGS) $(CFLAGS)
23 # Rules for cleaning
25 clean::
26         $(RM) $(CLEAN_FILES)
28 .PHONY: clean
30 # Rules for installing
32 install install-lib install-dev uninstall::
34 .PHONY: install install-lib install-dev uninstall
36 # End of global rules