mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 04:27:58 +01:00
14 lines
217 B
Makefile
14 lines
217 B
Makefile
DIRS = teledactyl pentadactyl melodactyl
|
|
TARGETS = clean distclean doc help info jar release xpi
|
|
.SILENT:
|
|
|
|
all: xpi ;
|
|
|
|
$(TARGETS:%=\%.%):
|
|
echo MAKE $@
|
|
$(MAKE) -C $* $(@:$*.%=%)
|
|
|
|
$(TARGETS):
|
|
$(MAKE) $(DIRS:%=%.$@)
|
|
|