c0718054e9
- fixed bug that caused IDLE to panic (irq hook inconsistency); - kprintf() now accepts multiple arguments; moved to utility.c; - prepare_shutdown() signals system processes with SIGKSTOP; - phys_fill() renamed to phys_memset(), argument order changed; - kmemset() removed in favor of phys_kmemset(); - kstrncpy() removed in favor of phys_copy(); - katoi, kstrncmp replaced by normal library procedure again; - rm_irq_handler() interface changed (simply pass hook pointer);
44 lines
833 B
Makefile
Executable file
44 lines
833 B
Makefile
Executable file
# Makefile for kernel
|
|
|
|
# Directories
|
|
u = /usr
|
|
i = $u/include
|
|
l = $u/lib
|
|
s = system
|
|
|
|
# Programs, flags, etc.
|
|
CC = exec cc
|
|
CPP = $l/cpp
|
|
LD = $(CC) -.o
|
|
CFLAGS = -I$i
|
|
LDFLAGS = -i
|
|
|
|
HEAD = mpx.o
|
|
OBJS = start.o protect.o klib.o table.o main.o proc.o \
|
|
i8259.o exception.o system.o clock.o utility.o debug.o
|
|
SYSTEM = system.a
|
|
LIBS = -ltimers
|
|
|
|
|
|
# What to make.
|
|
all: build
|
|
kernel build install: $(HEAD) $(OBJS)
|
|
cd system && $(MAKE) -$(MAKEFLAGS) $@
|
|
$(LD) $(CFLAGS) $(LDFLAGS) -o kernel \
|
|
$(HEAD) $(OBJS) \
|
|
$(SYSTEM) $(LIBS)
|
|
install -S 0 kernel
|
|
|
|
clean:
|
|
cd system && $(MAKE) -$(MAKEFLAGS) $@
|
|
rm -f *.a *.o *~ *.bak kernel
|
|
|
|
depend:
|
|
cd system && $(MAKE) -$(MAKEFLAGS) $@
|
|
/usr/bin/mkdep "$(CC) -E $(CPPFLAGS)" *.c *.s > .depend
|
|
|
|
# Include generated dependencies.
|
|
klib.o: klib386.s klib88.s
|
|
mpx.o: mpx386.s mpx88.s
|
|
include .depend
|
|
|