forked from mirrors/tftp-hpa-google
Initial revision
This commit is contained in:
commit
09f975fa4c
18 changed files with 4696 additions and 0 deletions
21
tftp/Makefile
Normal file
21
tftp/Makefile
Normal file
|
@ -0,0 +1,21 @@
|
|||
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 *~
|
Loading…
Add table
Add a link
Reference in a new issue