mirror of
https://github.com/brmlab/ledbar.git
synced 2025-06-08 12:53:59 +02:00
10 lines
175 B
Makefile
10 lines
175 B
Makefile
CFLAGS=$(shell sdl-config --cflags) -Wall
|
|
LDFLAGS=$(shell sdl-config --libs)
|
|
|
|
all: ledbar
|
|
|
|
ledbar: ledbar.c
|
|
gcc ledbar.c -o ledbar $(CFLAGS) $(LDFLAGS)
|
|
|
|
clean:
|
|
rm -f ledbar
|