13 lines
252 B
Makefile
13 lines
252 B
Makefile
SHELL = /bin/sh
|
|
|
|
REP_MAKEFILES := src/makefiles/
|
|
|
|
MAKEFILES := affichage.makefile \
|
|
fichiersDossiers.makefile \
|
|
commandes.makefile \
|
|
regles.makefile
|
|
|
|
MAKEFILES := $(patsubst %,$(REP_MAKEFILES)/%,$(MAKEFILES))
|
|
|
|
include $(MAKEFILES)
|