26 lines
545 B
Makefile
26 lines
545 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = none
|
|
|
|
INSTALLED_INCLUDES = \
|
|
windef.h \
|
|
windows.h \
|
|
wingdi.h \
|
|
winuser.h
|
|
|
|
@MAKE_RULES@
|
|
|
|
install::
|
|
[ -d $(includedir) ] || $(MKDIR) $(includedir)
|
|
for f in $(INSTALLED_INCLUDES); do $(INSTALL_DATA) $(SRCDIR)/$$f $(includedir); done
|
|
|
|
# Don't just do a rm -rf on $(includedir) -- don't want to wipe out
|
|
# anything extra the user may have put there.
|
|
uninstall::
|
|
cd $(includedir) && $(RM) $(INSTALLED_INCLUDES)
|
|
-rmdir $(includedir)
|
|
|
|
### Dependencies:
|