Magellan Linux

Contents of /alx-src/branches/alx-web-070/scripts/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9679 - (show annotations) (download)
Wed Aug 2 15:09:06 2017 UTC (6 years, 8 months ago) by niro
File size: 421 byte(s)
-install socket-send dir
1 include ../Makefile.inc
2
3 SUBDIRS = cert sql-schema socket-send
4
5 INSTALLDIRS = $(SUBDIRS:%=install-%)
6 CLEANDIRS = $(SUBDIRS:%=clean-%)
7
8 all: $(SUBDIRS)
9
10 install: $(INSTALLDIRS) all
11
12 clean: $(CLEANDIRS)
13
14 $(SUBDIRS):
15 $(MAKE) -C $@
16
17 $(INSTALLDIRS):
18 $(MAKE) -C $(@:install-%=%) install
19
20 $(CLEANDIRS):
21 $(MAKE) -C $(@:clean-%=%) clean
22
23 .PHONY: $(SUBDIRS)
24 .PHONY: $(INSTALLDIRS)
25 .PHONY: $(CLEANDIRS)
26 .PHONY: all install clean