mirror of
https://github.com/brmlab/ledbar.git
synced 2025-06-09 05:14:03 +02:00
initial commit
This commit is contained in:
commit
69772668d4
3 changed files with 140 additions and 0 deletions
10
Makefile
Normal file
10
Makefile
Normal file
|
@ -0,0 +1,10 @@
|
|||
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
|
Loading…
Add table
Add a link
Reference in a new issue