FreeCalypso > hg > fc-usbser-tools
annotate libuwrap/Makefile @ 11:fe4231326fb2
libuwrap: implement locating by description-string
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 07 Sep 2023 04:58:16 +0000 |
parents | fd3fcba5a8ac |
children | 80e521d6609c |
rev | line source |
---|---|
9 | 1 CC= gcc |
2 CFLAGS= -O2 | |
11
fe4231326fb2
libuwrap: implement locating by description-string
Mychaela Falconia <falcon@freecalypso.org>
parents:
10
diff
changeset
|
3 OBJS= find_busdev.o find_desc_str.o find_matchspec.o prelim_init.o |
9 | 4 LIB= libuwrap.a |
5 | |
6 all: ${LIB} | |
7 | |
8 ${LIB}: ${OBJS} | |
9 ar rcu $@ ${OBJS} | |
10 ranlib $@ | |
11 | |
12 clean: | |
13 rm -f *.[oa] errs |