55 lines
905 B
Makefile
55 lines
905 B
Makefile
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = none
|
|
|
|
INSTALLSUBDIRS = \
|
|
control \
|
|
notepad \
|
|
progman \
|
|
regedit \
|
|
regsvr32 \
|
|
uninstaller \
|
|
wcmd \
|
|
wineconsole \
|
|
winemine \
|
|
winepath \
|
|
winhelp \
|
|
winver
|
|
|
|
# Programs that are not generally useful and don't get installed
|
|
# Use 'make everything' to build them
|
|
OTHERSUBDIRS = \
|
|
avitools \
|
|
clock \
|
|
cmdlgtst \
|
|
osversioncheck \
|
|
regapi \
|
|
regtest \
|
|
view \
|
|
winetest
|
|
|
|
SUBDIRS = $(INSTALLSUBDIRS) $(OTHERSUBDIRS)
|
|
|
|
all: $(INSTALLSUBDIRS)
|
|
|
|
@MAKE_RULES@
|
|
|
|
everything: $(SUBDIRS)
|
|
|
|
install-everything: $(SUBDIRS:%=%/__install__)
|
|
|
|
uninstall-everything: $(SUBDIRS:%=%/__uninstall__)
|
|
|
|
install:: $(INSTALLSUBDIRS:%=%/__install__)
|
|
|
|
uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__)
|
|
|
|
$(SUBDIRS:%=%/__checklink__): dummy
|
|
@cd `dirname $@` && $(MAKE) checklink
|
|
|
|
checklink:: $(SUBDIRS:%=%/__checklink__)
|
|
|
|
### Dependencies:
|