Newer
Older
Scratch / ubixos-server / Makefile
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 467 bytes Scratch
# $Id: Makefile,v 1.1.1.1 2002/09/18 16:42:31 reddawg Exp $
# The System Makefile (C) 2002 The UbixOS Project

all: libc depend bin kernel tools

libc: src
	(cd src/lib/libc;make)

depend: src
	(cd src/lib/ubix;make)

bin: src
	(cd src/bin;make)

kernel: src
	(cd src/sys;make)

tools: src
	(cd src/tools;make)

install:
	(cd src/sys;make install)
	
clean:
	(cd src/sys;make clean)
	(cd src/lib/libc;make clean)
	(cd src/bin;make clean)
	(cd src/lib/ubix;make clean)