8 lines
104 B
Makefile
8 lines
104 B
Makefile
|
|
all: test
|
||
|
|
|
||
|
|
test: test.c uprintf.c uprintf.h
|
||
|
|
gcc -Os -m32 -o test test.c uprintf.c
|
||
|
|
|
||
|
|
clean:
|
||
|
|
rm -rf test
|