Code Monkey home page Code Monkey logo

Comments (3)

adam-huganir avatar adam-huganir commented on September 22, 2024 1

yeah, a ./scripts folder is a good idea. Makefiles are super simple with basic usage, so nothing fancy to learn. This is the one I was using just to make dev easier, and you can see how you are basically just merging the command-line scripts into one file and giving them shorthand names. the only fancy thing is the lines that have dependencies, so release: clean update-binaries build-all means run clean, update-binaries and build-all before running the check-wheel-contents script

release: clean update-binaries build-all
	check-wheel-contents dist/*

build-all: build-darwin-arm64 build-darwin-x64 build-linux-arm32 build-linux-arm64 \
			build-win-x64 build-win-x86 build-linux-x64

build-darwin-x64:
	python3 setup_darwin_x64.py   bdist_wheel

build-darwin-arm64:
	python3 setup_darwin_arm64.py bdist_wheel

build-linux-x64:
	python3 setup_linux_x64.py    bdist_wheel

build-linux-arm64:
	python3 setup_linux_arm64.py  bdist_wheel

build-linux-arm32:
	python3 setup_linux_arm32.py  bdist_wheel

build-win-x64:
	python3 setup_windows_x64.py  bdist_wheel

build-win-x86:
	python3 setup_windows_x86.py  bdist_wheel

update-binaries:
	python3 update.py

clean:
	-rm -r dist
	-rm -r build
	-rm -r data/*
	-touch data/.gitkeep
	-rm -r src/pypdfium2.egg-info/
	-rm -r __pycache__
	-rm -r src/pypdfium2/__pycache__
	-unlink src/pypdfium2/_pypdfium.py
	-unlink src/pypdfium2/pdfium
	-unlink src/pypdfium2/pdfium.dll
	-unlink src/pypdfium2/pdfium.dylib

from pypdfium2.

mara004 avatar mara004 commented on September 22, 2024

The clean, release and setup_all scripts could possibly be merged into a Makefile. However, I never had to do with Makefiles so far and don't know the syntax... We could also move the scripts into an own directory to shorten the root folder content.

from pypdfium2.

mara004 avatar mara004 commented on September 22, 2024

Oh yes, that looks good.

from pypdfium2.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.