minix/kernel/system/Makefile
2005-07-01 18:01:33 +00:00

31 lines
473 B
Makefile

# Makefile for system library implementation
# Directories
u = /usr
i = $u/include
# Programs, flags, etc.
CC = exec cc
CPP = $l/cpp
LD = $(CC) -.o
CFLAGS = -I$i
LDFLAGS = -i
SYS = clock.o copying.o debugging.o devio.o irqctl.o proctl.o \
sysctl.o misc.o sigctl.o tracing.o priority.o
# What to make.
all build: $(SYS)
clean:
rm -f *.a *.o *.bak
depend:
/usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend
# Include generated dependencies.
include .depend