conterm/exportfs/Makefile

17 lines
200 B
Makefile
Raw Normal View History

ROOT=..
include ../Make.config
2005-08-08 16:50:13 +04:00
LIB=libexportfs.a
OFILES=\
exportfs.$O\
exportsrv.$O
2005-11-04 18:47:45 +03:00
default: $(LIB)
2005-08-08 16:50:13 +04:00
$(LIB): $(OFILES)
$(AR) r $(LIB) $(OFILES)
$(RANLIB) $(LIB)
2005-08-08 16:50:13 +04:00
%.$O: %.c
$(CC) $(CFLAGS) $*.c