6 lines
128 B
Makefile
6 lines
128 B
Makefile
write: write.c
|
|
gcc -nostdinc -nostdlib -I ../include -I ../target/include $< ../target/debug/libc.a -o $@
|
|
|
|
clean:
|
|
rm -f write
|