mikemccormack / ring3k

A Linux based Windows compatible user mode kernel

This URL has Read+Write access

ring3k / Make.rules.in
100644 20 lines (12 sloc) 0.401 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
dummy:
 
$(SUBDIRS): dummy
@cd $@ && $(MAKE)
 
$(SUBDIRS:%=%/__clean__): dummy
@cd `dirname $@` && $(MAKE) clean
 
$(SUBDIRS:%=%/__install__): dummy
@cd `dirname $@` && $(MAKE) install
 
$(SUBDIRS:%=%/__uninstall__): dummy
@cd `dirname $@` && $(MAKE) uninstall
 
install:: $(INSTALLSUBDIRS:%=%/__install__) dummy
uninstall:: $(INSTALLSUBDIRS:%=%/__uninstall__) dummy
clean:: $(SUBDIRS:%=%/__clean__)