26 lines
517 B
Makefile
26 lines
517 B
Makefile
################################
|
|
# Makefile pour eole-risotto
|
|
################################
|
|
|
|
SOURCE=eole-risotto
|
|
VERSION=X.X
|
|
EOLE_VERSION=2.7
|
|
PKGAPPS=non
|
|
|
|
################################
|
|
# Début de zone à ne pas éditer
|
|
################################
|
|
|
|
include eole.mk
|
|
include apps.mk
|
|
|
|
################################
|
|
# Fin de zone à ne pas éditer
|
|
################################
|
|
|
|
# Makefile rules dedicated to application
|
|
# if exists
|
|
ifneq (, $(strip $(wildcard $(SOURCE).mk)))
|
|
include $(SOURCE).mk
|
|
endif
|