pve-manager/www/Makefile
Dietmar Maurer f3279ebd42 do not install extJS 5 framework by default
We don't want to have development code in final 4.0 release.
2015-09-25 07:17:39 +02:00

9 lines
186 B
Makefile

# Note: please add ext5 for extJS 5 development
SUBDIRS = images ext4 css manager bootstrap touch mobile
all: ${SUBDIRS}
%:
set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done