summaryrefslogtreecommitdiff
path: root/comp/lucas-standen-NEA/code2/stdlib/String/Makefile
blob: 65c308b8e4f0c19256135be4f22033e792bcd16b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
CC=cc
CFLAGS=-O3

SRC = String.c
OBJ = ${SRC:.c=.o}


all:
	${CC} -c ${SRC} -o ${OBJ} ${CFLAGS}
install: all 
	cp String.o /usr/local/share/zpylib/
	cp String.h /usr/local/share/zpylib/include/
clean:
	rm -rf *.o

.PHONY: all clean install uninstall