fb-dash/Makefile
2022-05-02 15:59:50 +02:00

8 lines
82 B
Makefile

CFLAGS = -g -Wall
fb_dash: fb_dash.c
gcc -o $@ $(CFLAGS) $<
clean:
rm fb_dash