Makefile 218 B

1234567891011121314151617181920
  1. .POSIX:
  2. include mk/config.mk
  3. .PHONY: all
  4. all: clayout
  5. include mk/build.mk
  6. layout.o: cvector.h assert_msg.h
  7. clayout: layout.o
  8. $(CC) ${LDFLAGS} ${LDLIBS} -o $@ $<
  9. .PHONY: clean
  10. clean:
  11. rm -f -- clayout layout.o