Files
uprintf/Makefile

8 lines
108 B
Makefile
Raw Normal View History

2020-12-13 09:51:25 +03:00
all: test
test: test.c uprintf.c uprintf.h
2020-12-13 11:05:56 +03:00
gcc -std=c99 -Os -o test test.c uprintf.c
2020-12-13 09:51:25 +03:00
clean:
rm -rf test