omos-tcnj2024/sys/Makefile

11 lines
209 B
Makefile
Raw Normal View History

2024-02-18 00:18:23 +01:00
include sys/drv/vga/Makefile
2024-02-18 01:16:13 +01:00
2024-02-18 00:18:23 +01:00
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)