root / Whitix / branches / hybrid / net / Makefile

Revision 503, 340 bytes (checked in by mwhitworth, 4 months ago)

Build the network subsystem as a module.

Line 
1DEPTH=../
2include ../make.inc
3
4MODULES = local.sys socket.sys network.sys device.sys eth.sys
5
6build: $(MODULES)
7        make -C inet
8        ld -r socket.sys network.sys device.sys eth.sys -o net.sys
9
10modules_install:
11        make -C inet modules_install
12        cp net.sys local.sys ../CdRoot/System/Modules/Core
13
14clean:
15        rm -f *.o *.sys
16        make -C inet clean
Note: See TracBrowser for help on using the browser.