mirror of
https://github.com/ShaYmez/NXDNClients.git
synced 2024-11-21 23:15:14 -05:00
Add top level Makefile.
This commit is contained in:
parent
76bfc9c592
commit
85faf17315
20
Makefile
Normal file
20
Makefile
Normal file
@ -0,0 +1,20 @@
|
||||
SUBDIRS = NXDNGateway NXDNParrot NXDNReflector
|
||||
CLEANDIRS = $(SUBDIRS:%=clean-%)
|
||||
INSTALLDIRS = $(SUBDIRS:%=install-%)
|
||||
|
||||
all: $(SUBDIRS)
|
||||
|
||||
$(SUBDIRS):
|
||||
$(MAKE) -C $@
|
||||
|
||||
clean: $(CLEANDIRS)
|
||||
|
||||
$(CLEANDIRS):
|
||||
$(MAKE) -C $(@:clean-%=%) clean
|
||||
|
||||
install: $(INSTALLDIRS)
|
||||
|
||||
$(INSTALLDIRS):
|
||||
$(MAKE) -C $(@:install-%=%) install
|
||||
|
||||
.PHONY: $(SUBDIRS) $(CLEANDIRS) $(INSTALLDIRS)
|
Loading…
Reference in New Issue
Block a user