omos-tcnj2024/sys/drv/vga/Makefile

11 lines
232 B
Makefile
Raw Normal View History

2024-02-17 23:19:28 +01:00
CC=cc
FLAGS=-Wall -c -g -Wextra -ffreestanding -m32 -nostdlib
SRCS=$(wildcard *.c)
INCLUDE=include/
MAIN_INCLUDE=../../include/
2024-02-17 23:53:35 +01:00
BIN=../../../obj/drv/vga.o
2024-02-17 23:19:28 +01:00
all:
$(CC) $(FLAGS) -I $(INCLUDE) -I $(MAIN_INCLUDE) $(SRCS) -o $(BIN)