diff options
author | Daniel Carl <danielcarl@gmx.de> | 2017-05-07 14:19:40 +0200 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2017-05-07 14:19:40 +0200 |
commit | 746a74af99ef35af21d75432f1a1050dae0a3c7c (patch) | |
tree | 82af8d233f80861badaecae058a3f7f16d112d1d /src/Makefile | |
parent | d33dfd31c148f9c82610e876f75fb16468d8d6c1 (diff) |
Prefix minified content by file type.
Avoid naming collisions and prefix the minified scripts by JS_ so that
it's obvious what's their content.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index ae8d14b..50e267d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,9 +1,9 @@ BASEDIR=.. include $(BASEDIR)/config.mk -SUBDIRS = webextension -OBJ = $(patsubst %.c, %.o, $(wildcard *.c)) -JSFILES = $(wildcard scripts/*.js) +SUBDIRS = webextension +OBJ = $(patsubst %.c, %.o, $(wildcard *.c)) +JSFILES = $(wildcard scripts/*.js) all: vimb $(SUBDIRS:%=%.subdir-all) |