mirror of
https://github.com/tsoding/boomer
synced 2024-11-18 09:28:37 +00:00
8 lines
148 B
Makefile
8 lines
148 B
Makefile
CFLAGS=`pkg-config --cflags x11 gl`
|
|
LIBS=`pkg-config --libs x11 gl`
|
|
|
|
all: fbconfig screenshot
|
|
|
|
%: %.c
|
|
gcc -Wall -Werror $(CFLAGS) -o $@ $< $(LIBS)
|