FreeCalypso > hg > ueda-linux
comparison ueda/unet-utils/Makefile @ 24:7e8a2cb54b6b
started implementing unet-destar
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Thu, 06 Aug 2015 20:20:11 +0000 |
parents | |
children | 2af4a85daf89 |
comparison
equal
deleted
inserted
replaced
23:558269596a5c | 24:7e8a2cb54b6b |
---|---|
1 CC= gcc | |
2 CFLAGS= -O2 | |
3 PROGS= unet-destar | |
4 LIBUNET=../libunet/libunet.a | |
5 BINDIR= /usr/local/bin | |
6 | |
7 all: ${PROGS} | |
8 | |
9 ${PROGS}: ${LIBUNET} | |
10 ${CC} ${CFLAGS} -o $@ $@.o ${LIBUNET} | |
11 | |
12 install: | |
13 install -c -o bin -g bin -m 755 ${PROGS} ${BINDIR} | |
14 | |
15 clean: | |
16 rm -f *.[ao] a.out core errs ${PROGS} | |
17 | |
18 unet-destar: unet-destar.o |