Makefile 134 B

12345678910
  1. CC = musl-gcc
  2. LDFLAGS = -lm
  3. all: escstring
  4. escstring:
  5. $(CC) $(LDFLAGS) escstring.c -o $@
  6. clean:
  7. rm -f escstring escstring.o