FreeCalypso > hg > ueda-linux
annotate ueda/libunet/Makefile @ 86:ccbf05fcbcb2
ifctf-part-lib/m4-fp/geda.inc: JUMPERn covers full [1,20] range
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Wed, 25 Apr 2018 20:13:34 +0000 |
parents | 73abf2c13884 |
children |
rev | line source |
---|---|
9 | 1 CC= gcc |
2 CFLAGS= -O2 | |
11
73abf2c13884
libunet: nethash functions implemented
Space Falcon <falcon@ivan.Harhan.ORG>
parents:
9
diff
changeset
|
3 LIBOBJS=nethash.o unetrd.o |
9 | 4 |
5 all: libunet.a | |
6 | |
7 libunet.a: ${LIBOBJS} | |
8 ar rcu $@ ${LIBOBJS} | |
9 ranlib $@ | |
10 | |
11 clean: | |
12 rm -f *.[ao] a.out core errs | |
13 | |
14 install: |