diff options
Diffstat (limited to 'host/matelight/Makefile')
-rw-r--r-- | host/matelight/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/host/matelight/Makefile b/host/matelight/Makefile new file mode 100644 index 0000000..2a7e971 --- /dev/null +++ b/host/matelight/Makefile @@ -0,0 +1,6 @@ + +all: main.c font.c font.h + gcc -std=gnu11 -Wall -lm -o matelight -g -O0 main.c font.c + +clean: + rm matelight |