diff options
author | Javier <dev.git@javispedro.com> | 2022-01-30 20:02:28 +0100 |
---|---|---|
committer | Javier <dev.git@javispedro.com> | 2022-01-30 20:02:28 +0100 |
commit | 7bb77279bf5b76902c167923d57800e1f6f6073e (patch) | |
tree | 9c23a39b3ea2e6af094240780ce21206602a0c11 /Makefile | |
parent | 54b754ce040d5549d5c58428d2b9c095601e98dc (diff) | |
download | vmusic-7bb77279bf5b76902c167923d57800e1f6f6073e.tar.gz vmusic-7bb77279bf5b76902c167923d57800e1f6f6073e.zip |
Cleaning up Adlib module
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 |