aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJavier <dev.git@javispedro.com>2022-01-30 20:02:28 +0100
committerJavier <dev.git@javispedro.com>2022-01-30 20:02:28 +0100
commit7bb77279bf5b76902c167923d57800e1f6f6073e (patch)
tree9c23a39b3ea2e6af094240780ce21206602a0c11 /Makefile
parent54b754ce040d5549d5c58428d2b9c095601e98dc (diff)
downloadvmusic-7bb77279bf5b76902c167923d57800e1f6f6073e.tar.gz
vmusic-7bb77279bf5b76902c167923d57800e1f6f6073e.zip
Cleaning up Adlib module
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 55d57d5..188ea1b 100644
--- a/Makefile
+++ b/Makefile
@@ -89,14 +89,17 @@ $(OUTDIR)/ExtPack.xml: ExtPack.xml
$(OUTDIR)/ExtPack.signature:
echo "todo" > $@
-$(OUTDIR)/ExtPack.manifest: $(OUTDIR)
+$(OUTDIR)/ExtPack.manifest: $(OUTDIR) $(OUTOSDIR)
cd $(OUTDIR) ;\
find -type f -printf '%P\n' | xargs ../build_manifest.sh > $(@F)
pack: $(OUTDIR)/ExtPack.xml $(OUTDIR)/ExtPack.signature $(OUTDIR)/ExtPack.manifest
tar --format=ustar --numeric-owner --owner=0 --group=0 --mode='a=rX,u+w' --sort=name -C $(OUTDIR) -f VMusic.vbox-extpack -v -z -c .
+strip:
+ strip $(OUTOSDIR)/*.$(SO)
+
clean:
rm -rf $(OUTDIR) $(OBJDIR) VMusic.vbox-extpack
-.PHONY: all build clean pack
+.PHONY: all build clean strip pack