comparison ueda/uschem-utils/Makefile @ 0:cd92449fdb51

initial import of ueda and ifctf-part-lib from ifctfvax CVS
author Space Falcon <falcon@ivan.Harhan.ORG>
date Mon, 20 Jul 2015 00:24:37 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:cd92449fdb51
1 CFLAGS= -O
2 PROGS= check rewrite
3 LIBS= ../libuschem/libuschem.a ../libueda/libueda.a
4 BINDIR= /usr/local
5
6 all: ${PROGS}
7
8 check: check.o checknets.o
9 ${CC} -o $@ $@.o checknets.o ${LIBS}
10
11 rewrite: rewrite.o
12 ${CC} -o $@ $@.o ${LIBS}
13
14 ${PROGS}: ${LIBS}
15
16 install:
17 install -c -o bin -g bin -m 755 check ${BINDIR}/uschem-check
18 install -c -o bin -g bin -m 755 rewrite ${BINDIR}/uschem-rewrite
19
20 clean:
21 rm -f *.[ao] a.out core errs ${PROGS}