FreeCalypso > hg > ueda-linux
comparison netdiff/convert/Makefile @ 132:31ae8105aaa0
netdiff project started with protel2donl
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 06 Sep 2020 22:48:09 +0000 |
parents | |
children | ab7b9f01ac6a |
comparison
equal
deleted
inserted
replaced
131:125fc4ef7eb0 | 132:31ae8105aaa0 |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= protel2donl | |
4 BINDIR= /usr/local/bin | |
5 | |
6 all: ${PROGS} | |
7 | |
8 ${PROGS}: | |
9 ${CC} ${CFLAGS} -o $@ $@.c | |
10 | |
11 install: | |
12 install -c -o bin -g bin -m 755 ${PROGS} ${BINDIR} | |
13 | |
14 clean: | |
15 rm -f *.[ao] a.out core errs ${PROGS} | |
16 | |
17 protel2donl: protel2donl.c |