Project

General

Profile

« Previous | Next » 

Revision 388

Makefile: Changed all to make schemas and mappings instead of running install

View differences:

Makefile
30 30
# Env
31 31
export PGOPTIONS = --client-min-messages=WARNING
32 32

  
33
subdirs := schemas/ mappings/
34

  
33 35
#####
34 36

  
35
all: _always install
37
all: _always $(subdirs)
36 38

  
37 39
.SUFFIXES:
38 40

  
39 41
_always:
40 42
.PHONY: _always
41 43

  
44
clean: $(addsuffix clean,$(subdirs))
45

  
46
*/%: _always
47
	$(subMake)
48
.PRECIOUS: */%
49

  
50
%/: _always
51
	$(subMake)
52
.PRECIOUS: %/
53

  
42 54
#####
43 55

  
44 56
install: _always core mysql inputs test
......
187 199

  
188 200
test2: _always $(addsuffix test,$(inputs))
189 201

  
190
inputs/%: _always
191
	+$(subMake)
192
# ignore errors in sub-makes
193

  
194 202
#####
195 203

  
196 204
test: _always test-map

Also available in: Unified diff