Skip to content

Commit

Permalink
Fix submake so that parallel make will work
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremysrand committed Feb 10, 2023
1 parent f4892be commit e915c0e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file modified .DS_Store
Binary file not shown.
4 changes: 2 additions & 2 deletions make/head.mk
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,6 @@ XCODE_PLUGIN_COMPATIBILITY=DVTPlugInCompatibilityUUID

all:
$(MKDIR) $(OBJDIR) $(GENDIR) $(TARGETDIR)
@make -f $(firstword $(MAKEFILE_LIST)) gen
@make -f $(firstword $(MAKEFILE_LIST)) build
@$(MAKE) -f $(firstword $(MAKEFILE_LIST)) gen
@$(MAKE) -f $(firstword $(MAKEFILE_LIST)) build

4 changes: 2 additions & 2 deletions pkg/createPackage
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ done < $PROJECTS

rm -f $PROJECTS

pkgbuild --root $TMPDIR --version 3.0 --identifier com.halcyontouch.Apple2gsTemplate.pkg --install-location /tmp/com.halcyontouch.Apple2gsTemplate.pkg/ --scripts pkg/scripts/ Apple2GSXcodeTemplate.pkg
pkgbuild --root $TMPDIR --version 3.0.1 --identifier com.halcyontouch.Apple2gsTemplate.pkg --install-location /tmp/com.halcyontouch.Apple2gsTemplate.pkg/ --scripts pkg/scripts/ Apple2GSXcodeTemplate.pkg
productbuild --distribution pkg/Distribution.xml --resource ./pkg temp.pkg
rm Apple2GSXcodeTemplate.pkg
productsign --sign "Developer ID Installer" temp.pkg Apple2GSXcodeTemplate.pkg
productsign --sign "3rd Party Mac Developer Installer" temp.pkg Apple2GSXcodeTemplate.pkg
rm temp.pkg

rm -rf $TMPDIR

0 comments on commit e915c0e

Please sign in to comment.