diff options
author | Marvin Borner | 2019-11-30 13:25:52 +0100 |
---|---|---|
committer | Marvin Borner | 2019-11-30 13:25:52 +0100 |
commit | 348995b3fb8e1ce4a01eeb1f2189e664e833b69d (patch) | |
tree | 100e4c3d586e1af9674f4829a533bcf2f34ea40b /Makefile | |
parent | 728d764f314b98adec26d8e674b7235db6c4ad63 (diff) |
Renamed assets directory
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ build: clean i686-elf-gcc -T ./src/kernel/linker.ld -I ./src -o ./build/melvix.bin -std=gnu99 -ffreestanding -O2 -nostdlib ./build/*.o || exit; \ # Modules - i686-elf-gcc -c ./src/assets/font.c -o ./build/font.o -I ./src -std=gnu99 -ffreestanding -O2 -nostdlib; \ + i686-elf-gcc -c ./src/resources/font.c -o ./build/font.o -I ./src -std=gnu99 -ffreestanding -O2 -nostdlib; \ objcopy -O binary ./build/font.o ./build/font.bin; \ rm ./build/font.o; \ |