forked from mirrors/tftp-hpa-google
Initial revision
This commit is contained in:
commit
09f975fa4c
18 changed files with 4696 additions and 0 deletions
25
Makefile
Normal file
25
Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# You can do "make SUB=blah" to make only a few, or edit here, or both
|
||||
# You can also run make directly in the subdirs you want.
|
||||
|
||||
SUB = tftp tftpd
|
||||
|
||||
%.build:
|
||||
$(MAKE) -C $(patsubst %.build, %, $@)
|
||||
|
||||
%.install:
|
||||
$(MAKE) -C $(patsubst %.install, %, $@) install
|
||||
|
||||
%.clean:
|
||||
$(MAKE) -C $(patsubst %.clean, %, $@) clean
|
||||
|
||||
%.spotless:
|
||||
$(MAKE) -C $(patsubst %.spotless, %, $@) spotless
|
||||
|
||||
all: $(patsubst %, %.build, $(SUB))
|
||||
|
||||
install: $(patsubst %, %.install, $(SUB))
|
||||
|
||||
clean: $(patsubst %, %.clean, $(SUB))
|
||||
|
||||
spotless: $(patsubst %, %.spotless, $(SUB))
|
||||
rm -f MCONFIG config.* *~
|
Loading…
Add table
Add a link
Reference in a new issue