Newer
Older
Scratch / ubixos-home / Makefile
@Christopher W. Olsen Christopher W. Olsen on 25 Oct 2019 287 bytes Scratch
# $Id: Makefile,v 1.2 2002/09/29 23:55:15 reddawg Exp $
# The System Makefile (C) 2002 The UbixOS Project

all: kernel tools

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/tools;make clean)