root / Whitix / branches / hybrid / devices / Makefile

Revision 521, 421 bytes (checked in by mwhitworth, 3 months ago)

Update build process.

Line 
1DEPTH=../
2include ../make.inc
3
4MODULES = misc.sys
5
6build: $(MODULES)
7        make -C input
8        make -C net
9        make -C pci
10        make -C storage
11
12modules_install:
13        cp *.sys ../CdRoot/System/Modules/Core
14        make -C input modules_install
15        make -C net modules_install
16        make -C pci modules_install
17        make -C storage modules_install
18
19clean:
20        rm *.sys -f
21        make -C net clean
22        make -C storage clean
23        make -C input clean
24        make -C pci clean
Note: See TracBrowser for help on using the browser.