uprintf/Makefile
Николай Пузанов 56cc2bec54 Add -std=c99 option for gcc
2020-12-13 11:04:53 +03:00

8 lines
113 B
Makefile

all: test
test: test.c uprintf.c uprintf.h
gcc -std=c99 -Os -m32 -o test test.c uprintf.c
clean:
rm -rf test