FreeCalypso > hg > ueda-linux
annotate ueda/libunet/Makefile @ 74:58f11f06d831
pads2gpcb: main output implemented
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Mon, 01 Feb 2016 00:45:24 +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: |