aboutsummaryrefslogtreecommitdiff
path: root/src/util/Makefile.in
blob: ec92828c4456c2b1c3b812c6f63db6fc908cca22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
mydir=util
##WIN32###Windows NMAKE doesn't like @ in make variable names, and on
##WIN32### Windows we don't do the @FOO@ substitutions we do with UNIX
##WIN32### configure scripts.  The set of subdirs to use is hard-coded
##WIN32### below in the 'all-windows' target anyways, so just hide this.
##WIN32##!if 0
SUBDIRS=support $(MAYBE_ET_@COM_ERR_VERSION@) $(MAYBE_SS_@SS_VERSION@) \
	profile send-pr
##WIN32##!endif
BUILDTOP=$(REL)..

MAYBE_ET_k5 = et
MAYBE_SS_k5 = ss
MAYBE_ET_sys =
MAYBE_SS_sys =

all-recurse:

clean-unix::
	$(RM) -r $(FAKEPREFIX)

NO_OUTDIR=1
all-windows::
	@echo Making in util\windows
	cd windows
	$(MAKE) -$(MFLAGS)
	@echo Making in util\support
	cd ..\support
	$(MAKE) -$(MFLAGS)
	@echo Making in util\et
	cd ..\et
	$(MAKE) -$(MFLAGS) 
	@echo Making in util\profile
	cd ..\profile
	$(MAKE) -$(MFLAGS) 
	cd ..

clean-windows::
	@echo Making clean in util\windows
	cd windows
	$(MAKE) -$(MFLAGS) clean
	@echo Making clean in util\et
	cd ..\et
	$(MAKE) -$(MFLAGS) clean
	@echo Making clean in util\profile
	cd ..\profile
	$(MAKE) -$(MFLAGS) clean
	cd ..

install::
	@echo nothing to install in util