diff options
Diffstat (limited to 'libgui/Makefile')
-rw-r--r-- | libgui/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libgui/Makefile b/libgui/Makefile index 89bbb35..59254d4 100644 --- a/libgui/Makefile +++ b/libgui/Makefile @@ -1,6 +1,8 @@ # MIT License, Copyright (c) 2020 Marvin Borner -COBJS = vesa.o +COBJS = vesa.o \ + psf.o \ + gui.o CC = ../cross/opt/bin/i686-elf-gcc LD = ../cross/opt/bin/i686-elf-ld OC = ../cross/opt/bin/i686-elf-ar @@ -10,6 +12,8 @@ CSFLAGS = -mpreferred-stack-boundary=2 -fno-asynchronous-unwind-tables -Os CFLAGS = $(CSFLAGS) -Wall -Wextra -nostdlib -nostdinc -ffreestanding -fno-builtin -mgeneral-regs-only -std=c99 -m32 -pedantic-errors -Iinc/ -I../libc/inc/ -Duserspace -fPIE +all: libgui clean + %.o: %.c @$(CC) -c $(CFLAGS) $< -o $@ |