FreeCalypso > hg > ueda-linux
comparison ueda/unet-bind/Makefile @ 101:ffab0a4424ad
ueda: unet-bind program moved into sensibly named unet-bind subdir
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Sun, 29 Sep 2019 22:42:41 +0000 |
| parents | ueda/sverp-bind/Makefile@61272ee5aadc |
| children |
comparison
equal
deleted
inserted
replaced
| 100:071b24bca546 | 101:ffab0a4424ad |
|---|---|
| 1 CC= gcc | |
| 2 CFLAGS= -O2 | |
| 3 OBJS= enterinst.o insthash.o main.o outcomp.o output.o readunet.o starpoints.o | |
| 4 LIBS= ../libunet/libunet.a ../libueda/libueda.a | |
| 5 PROG= unet-bind | |
| 6 BINDIR= /usr/local/bin | |
| 7 | |
| 8 all: ${PROG} | |
| 9 | |
| 10 ${PROG}: ${OBJS} ${LIBS} | |
| 11 ${CC} -o $@ ${OBJS} ${LIBS} | |
| 12 | |
| 13 ${OBJS}: struct.h | |
| 14 | |
| 15 install: | |
| 16 install -c -o bin -g bin -m 755 ${PROG} ${BINDIR} | |
| 17 | |
| 18 clean: | |
| 19 rm -f *.[ao] a.out core errs ${PROG} |
