pjht
51bb986d76
Instead of using PIDs to identify a destination, a process can have one or more mailboxes to send messages to.
14 lines
281 B
Makefile
14 lines
281 B
Makefile
C_SOURCES = $(wildcard *.c)
|
|
OBJ = $(C_SOURCES:.c=.o )
|
|
CFLAGS = -I../sysroot/usr/include -Wall -g -ffreestanding
|
|
CC = i386-elf-gcc
|
|
|
|
init: $(OBJ) ../libc/*
|
|
@i386-elf-ld -o $@ $(OBJ) ../kernel/start.o ../libc/libc.a
|
|
|
|
%.o: %.c
|
|
@$(CC) $(CFLAGS) -c $< -o $@
|
|
|
|
clean:
|
|
@rm -rf *.o init
|