mirror of
https://kernel.googlesource.com/pub/scm/network/tftp/tftp-hpa
synced 2025-04-26 01:49:52 +03:00

Use my modular m4 library used for other things as well; update autoconf macros to 2.71 standard. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
25 lines
328 B
Makefile
25 lines
328 B
Makefile
SRCROOT = ..
|
|
VERSION = $(shell cat ../version)
|
|
|
|
-include ../config/MCONFIG
|
|
include ../MRULES
|
|
|
|
OBJS = tftpsubs.$(O) signal.$(O)
|
|
LIB = libcommon.a
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(OBJS)
|
|
-rm -f $(LIB)
|
|
$(AR) $(LIB) $(OBJS)
|
|
$(RANLIB) $(LIB)
|
|
|
|
$(OBJS): tftpsubs.h
|
|
|
|
install:
|
|
|
|
clean:
|
|
rm -f *.o *.obj *.exe $(LIB)
|
|
|
|
distclean: clean
|
|
rm -f *~
|