source: trunk/include/win/Makefile.in@ 10366

Last change on this file since 10366 was 94, checked in by achimha, 26 years ago

Added CVS tag to many files (comctl32 and headers) .

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