8 lines
82 B
Makefile
8 lines
82 B
Makefile
CFLAGS = -g -Wall
|
|
|
|
fb_dash: fb_dash.c
|
|
gcc -o $@ $(CFLAGS) $<
|
|
|
|
clean:
|
|
rm fb_dash
|