dokku / plugn

Hook system that lets users extend your application with plugins
MIT License
82 stars 22 forks source link

(chore) Update makefile with source files to trigger automatic rebuilds #153

Closed mattmess1221 closed 5 months ago

josegonzalez commented 5 months ago

Can you describe a bit more what this PR is supposed to be doing? Its not super clear to me :)

mattmess1221 commented 5 months ago

By default, make will skip a task if its output already exists. By listing any input files after the name, make will intelligently rebuild the file if any of its inputs have changed since the last build. You're already doing this for the .deb archives

I made this change because I found it tedious to have to rm the build folder or make clean and build before tests. It let me do just make build/linux/plugn-amd64 && make test to run the tests.