This commit is contained in:
2022-11-14 01:02:52 +01:00
commit fecadb3821
6 changed files with 511 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
.PHONY: build run
build: ufb-test
run: build
./ufb-test
clean:
rm -f ufb-test
ufb-test: main.c framebuffer.c framebuffer.h framebuffer_config.h
cc -o $@ $^ -I.