mirror of
https://github.com/0intro/conterm
synced 2024-11-21 21:31:23 +03:00
17 lines
200 B
Makefile
17 lines
200 B
Makefile
ROOT=..
|
|
include ../Make.config
|
|
LIB=libexportfs.a
|
|
|
|
OFILES=\
|
|
exportfs.$O\
|
|
exportsrv.$O
|
|
|
|
default: $(LIB)
|
|
$(LIB): $(OFILES)
|
|
$(AR) r $(LIB) $(OFILES)
|
|
$(RANLIB) $(LIB)
|
|
|
|
%.$O: %.c
|
|
$(CC) $(CFLAGS) $*.c
|
|
|