mirror of
https://kernel.googlesource.com/pub/scm/network/tftp/tftp-hpa
synced 2025-04-26 01:49:52 +03:00
21 lines
327 B
Makefile
21 lines
327 B
Makefile
all: tftp
|
|
|
|
include ../MCONFIG
|
|
include ../MRULES
|
|
|
|
OBJS = tftp.o main.o tftpsubs.o
|
|
|
|
tftp: $(OBJS)
|
|
$(CC) $(LDFLAGS) $^ $(LIBS) -o $@
|
|
|
|
$(OBJS): tftpsubs.h
|
|
|
|
install: tftp
|
|
$(INSTALL_PROGRAM) -s tftp $(INSTALLROOT)$(BINDIR)
|
|
$(INSTALL_DATA) tftp.1 $(INSTALLROOT)$(MANDIR)/man1
|
|
|
|
clean:
|
|
rm -f *.o tftp
|
|
|
|
spotless: clean
|
|
rm -f *~
|