gdritter repos GRUtils / master escaped-string / Makefile
master

Tree @master (Download .tar.gz)

Makefile @master

fb88aa3
 
8138a6e
fb88aa3
 
 
 
 
 
8138a6e
 
 
fb88aa3
 
CC      = musl-gcc
LDFLAGS = -lm
prefix  = /usr/local

all: escstring

escstring:
	$(CC) $(LDFLAGS) escstring.c -o $@

install:
	install -m 0755 escstring $(prefix)/bin

clean:
	rm -f escstring escstring.o