diff options
author | Alessio Vanni <vannilla@firemail.cc> | 2019-06-23 02:34:09 +0200 |
---|---|---|
committer | Alessio Vanni <vannilla@firemail.cc> | 2019-06-23 02:34:09 +0200 |
commit | d9858f22244f58eb2a305aa2e42439c77acdb861 (patch) | |
tree | 7fc3de4a91a03806c891acbf11e0cc5f1c524145 /Makefile | |
parent | e29205dc4d013704cd6b1ee2fd7b7dc0ef226c01 (diff) | |
download | ematrix-d9858f22244f58eb2a305aa2e42439c77acdb861.tar.lz ematrix-d9858f22244f58eb2a305aa2e42439c77acdb861.tar.xz ematrix-d9858f22244f58eb2a305aa2e42439c77acdb861.zip |
Make messaging its own file
Also reorganize the Makefile a bit.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -119,11 +119,14 @@ JS2 := js/httpsb.js js/i18n.js js/liquid-dict.js js/logger.js \ # vapi-popup.js is apparently not needed on UXP # TODO: investigate wether or not it can be removed JS3 := js/tab.js js/traffic.js js/udom.js js/uritools.js js/user-rules.js \ - js/usersettings.js js/utils.js js/vapi-background.js js/vapi-client.js \ - js/vapi-common.js js/vapi-popup.js js/vapi-tabs.js js/vapi-window.js \ - js/xal.js js/vapi-core.js js/vapi-browser.js js/vapi-storage.js + js/usersettings.js js/utils.js js/xal.js -JS := $(JS1) $(JS2) $(JS3) +JS4 := js/vapi-client.js js/vapi-common.js js/vapi-background.js \ + js/vapi-popup.js js/vapi-tabs.js js/vapi-window.js \ + js/vapi-core.js js/vapi-browser.js js/vapi-storage.js \ + js/vapi-messaging.js + +JS := $(JS1) $(JS2) $(JS3) $(JS4) all: eMatrix.xpi |