omos-tcnj2024/sys/Makefile
2024-02-17 19:16:13 -05:00

11 lines
209 B
Makefile

include sys/drv/vga/Makefile
CC=cc
FLAGS=-Wall -c -g -Wextra -ffreestanding -m32 -nostdlib
SRCS=$(wildcard sys/*.c)
INC=sys/include/
INC_PARAMS=$(INC:%=-I%)
sysinit.o:
$(CC) $(FLAGS) $(INC_PARAMS) $(SRCS)