adds Makefile

This commit is contained in:
Florian Klemenz 2022-05-02 15:59:50 +02:00
parent 86999323af
commit 5ea8af93ff

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
CFLAGS = -g -Wall
fb_dash: fb_dash.c
gcc -o $@ $(CFLAGS) $<
clean:
rm fb_dash