소스 검색

Makefile: Remove traces of the moe submodule; always install PHP submodule.

master
Mandragorat Wandystanu 4 년 전
부모
커밋
414b0d852b
1개의 변경된 파일1개의 추가작업 그리고 33개의 파일을 삭제
  1. +1
    -33
      Makefile

+ 1
- 33
Makefile 파일 보기

@@ -6,10 +6,8 @@ NPM="npm"
DESTDIR="./dist"
PKG_VERSION := $( $(GREP) -Po '(?<="version": ")[^"]*' )
TMPDIR := $(shell mktemp -d)
# default modules
MODULES="php"

all: builddirs npm_dependencies swig htmlmin min-css min-js submodules
all: builddirs npm_dependencies swig htmlmin min-css min-js copy-php

swig:
$(NODE) node_modules/swig/bin/swig.js render -j dist.json templates/upload_logged.swig > $(CURDIR)/build/upload_logged.html
@@ -22,12 +20,7 @@ htmlmin:
$(NODE) node_modules/htmlmin/bin/htmlmin $(CURDIR)/build/404.html -o $(CURDIR)/build/404.html

installdirs:
ifneq (,$(findstring php,$(MODULES)))
mkdir -p $(DESTDIR)/classes $(DESTDIR)/includes
endif
ifneq (,$(findstring moe,$(MODULES)))
mkdir -p $(DESTDIR)/moe/{css,fonts,includes,js,login,panel/css/font,panel/css/images,register,templates}
endif

min-css:
$(NODE) $(CURDIR)/node_modules/.bin/cleancss --s0 $(CURDIR)/static/css/pomf.css > $(CURDIR)/build/pomf.min.css
@@ -39,18 +32,7 @@ min-js:
echo "// @license-end" >> $(CURDIR)/build/pomf.min.js

copy-php:
ifneq ($(wildcard $(CURDIR)/static/php/.),)
cp -rv $(CURDIR)/static/php/* $(CURDIR)/build/
else
$(error The php submodule was not found)
endif

copy-moe:
ifneq ($(wildcard $(CURDIR)/moe/.),)
cp -rv $(CURDIR)/moe $(CURDIR)/build/
else
$(error The moe submodule was not found)
endif

install: installdirs
cp -rv $(CURDIR)/build/* $(DESTDIR)/
@@ -73,18 +55,4 @@ npm_dependencies:
$(NPM) install

builddirs:
ifneq (,$(findstring php,$(MODULES)))
mkdir -p $(CURDIR)/build/classes $(CURDIR)/build/includes
endif
ifneq (,$(findstring moe,$(MODULES)))
mkdir -p $(CURDIR)/build/moe/{css,fonts,includes,js,login,panel/css/font,panel/css/images,register,templates}
endif

submodules:
$(info The following modules will be enabled: $(MODULES))
ifneq (,$(findstring php,$(MODULES)))
$(MAKE) copy-php
endif
ifneq (,$(findstring moe,$(MODULES)))
$(MAKE) copy-moe
endif

불러오는 중...
취소
저장