mirror of
https://github.com/0intro/conterm
synced 2024-11-21 21:31:23 +03:00
20 lines
225 B
Makefile
20 lines
225 B
Makefile
|
ROOT=..
|
||
|
include ../Make.config
|
||
|
LIB=libip.a
|
||
|
|
||
|
OFILES=\
|
||
|
eipfmt.$O\
|
||
|
parseip.$O\
|
||
|
classmask.$O\
|
||
|
bo.$O\
|
||
|
ipaux.$O\
|
||
|
|
||
|
default: $(LIB)
|
||
|
$(LIB): $(OFILES)
|
||
|
$(AR) r $(LIB) $(OFILES)
|
||
|
$(RANLIB) $(LIB)
|
||
|
|
||
|
%.$O: %.c
|
||
|
$(CC) $(CFLAGS) $*.c
|
||
|
|