mirror of
https://github.com/AuxXxilium/arc.git
synced 2024-11-24 05:29:53 +07:00
ab40ee4e8e
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
10 lines
93 B
Makefile
Executable File
10 lines
93 B
Makefile
Executable File
CFLAGS = -Wall -pedantic
|
|
|
|
all: fbsize
|
|
|
|
fbsize: main.o
|
|
cc -o $@ $^
|
|
|
|
clean:
|
|
rm -f fbsize *.o
|