Makefile 306 B

12345678910111213141516
  1. BINS=\
  2. alloc \
  3. args \
  4. create \
  5. write
  6. all: $(BINS)
  7. clean:
  8. rm -f $(BINS) *.out
  9. run: $(BINS)
  10. for bin in $(BINS); do echo "\\033[1m$${bin}\\033[0m"; ./$${bin} test args; done
  11. %: %.c
  12. gcc -nostdinc -nostdlib -I ../include -I ../target/include ../target/debug/libcrt0.a $< ../target/debug/libc.a -o $@