mirror of
https://github.com/RROrg/rr.git
synced 2025-06-21 05:51:05 +08:00
11 lines
94 B
Makefile
11 lines
94 B
Makefile
|
|
CFLAGS = -Wall -pedantic
|
|
|
|
all: fbsize
|
|
|
|
fbsize: main.o
|
|
cc -o $@ $^
|
|
|
|
clean:
|
|
rm -f fbsize *.o
|