Some more messages.
[wine] / include / Makefile.in
1 TOPSRCDIR = @top_srcdir@
2 TOPOBJDIR = ..
3 SRCDIR    = @srcdir@
4 VPATH     = @srcdir@
5 MODULE    = none
6
7 LIB_TARGET = @LIB_TARGET@
8
9 INSTALLED_INCLUDES = \
10         windef.h \
11         windows.h \
12         wingdi.h \
13         winuser.h
14
15 @MAKE_RULES@
16
17 # Testing LIB_TARGET prevents installing header files
18 # when --disable-lib is used
19 install:: dummy
20         if [ $(LIB_TARGET) ]; then \
21             [ -d $(includedir) ] || $(MKDIR) $(includedir); \
22             for f in $(INSTALLED_INCLUDES); do \
23                 $(INSTALL_DATA) $(SRCDIR)/$$f $(includedir); \
24             done; \
25         fi
26
27 # Don't just do a rm -rf on $(includedir) -- don't want to wipe out 
28 # anything extra the user may have put there.
29 uninstall::
30         cd $(includedir); $(RM) $(INSTALLED_INCLUDES)
31         -rmdir $(includedir)
32
33 dummy:
34
35 ### Dependencies: