FreeCalypso > hg > ueda-linux
comparison netdiff/renpart/Makefile @ 138:77acb816727b
netdiff: donl-rename-parts put together
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 07 Sep 2020 04:02:14 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
137:6f528e2a9e23 | 138:77acb816727b |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROG= donl-rename-parts | |
4 OBJS= main.o mainproc.o rename.o | |
5 BINDIR= /usr/local/bin | |
6 | |
7 all: ${PROG} | |
8 | |
9 ${PROG}: ${OBJS} | |
10 ${CC} ${CFLAGS} -o $@ ${OBJS} | |
11 | |
12 install: | |
13 install -c -o bin -g bin -m 755 ${PROG} ${BINDIR} | |
14 | |
15 clean: | |
16 rm -f *.[ao] a.out core errs ${PROG} |