Files
uprintf/Makefile

8 lines
104 B
Makefile
Raw Normal View History

2020-12-13 09:51:25 +03:00
all: test
test: test.c uprintf.c uprintf.h
gcc -Os -m32 -o test test.c uprintf.c
clean:
rm -rf test