公告板
版本库
filestore
活动
搜索
登录
main
/
JC24_WCS
24仓库控制系统
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
测试提交
chengsc
2024-07-23
f575652587d4160ab42e75acb2bc26b4f60fb7c3
[JC24_WCS.git]
/
wms
/
Theme
/
Boostrap
/
flot
/
Makefile
1
2
3
4
5
6
7
8
9
# Makefile for generating minified files
.PHONY: all
# we cheat and process all .js files instead of an exhaustive list
all: $(patsubst %.js,%.min.js,$(filter-out %.min.js,$(wildcard *.js)))
%.min.js: %.js
yui-compressor $< -o $@