FreeCalypso > hg > themwi-system-sw
annotate libutil/Makefile @ 38:020ba624bdd8
mgw source: #include <stdlib.h> in files using tmgw_ctrl.h
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 10 Jul 2022 00:36:31 -0800 |
parents | 660126bd5f59 |
children | 64b9f0f90726 |
rev | line source |
---|---|
1
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
1 CC= gcc |
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
2 CFLAGS= -O2 |
28
660126bd5f59
themwi-mncc: fix one bug, add debug syslog output
Mychaela Falconia <falcon@freecalypso.org>
parents:
20
diff
changeset
|
3 OBJS= extdigits.o imsi_entry.o mncc_debug.o mncc_utils.o nanp_valid.o \ |
660126bd5f59
themwi-mncc: fix one bug, add debug syslog output
Mychaela Falconia <falcon@freecalypso.org>
parents:
20
diff
changeset
|
4 numstring.o sockinit.o |
1
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
5 LIB= libutil.a |
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
6 |
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
7 all: ${LIB} |
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
8 |
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
9 ${LIB}: ${OBJS} |
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
10 ar rcu $@ ${OBJS} |
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
11 ranlib $@ |
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
12 |
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
13 clean: |
dbc0a8677b69
libutil: import from ThemWi1
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff
changeset
|
14 rm -f *.[oa] errs |