Time for Makefiles to Make a Comeback
medium.com
Time for Makefiles to Make a Comeback
1–10 of 116 posts
Re: Time for Makefiles to Make a Comeback
#2So its agreeable that the building pipeline of NPM calling some packer does replace any-other-language calling any-other-packer, but what is the point in replacing the role of `npm build`, with a makefile that just calls what npm would of called anyways?
replacing make with npm with make-calling-npm?
Re: Time for Makefiles to Make a Comeback
#3Re: Time for Makefiles to Make a Comeback
#4Re: Time for Makefiles to Make a Comeback
#5I used to be big fan of using Makefile for web development, but have since changed my mind, because make is not very good fit for watch-mode incremental building.
Re: Time for Makefiles to Make a Comeback
#6I used to be big fan of using Makefile for web development, but have since changed my mind, because make is not very good fit for watch-mode incremental building.
The data model of makefiles is perfect for watching and rebuilding. All you need to add is something that monitors the source files for any changes and runs 'make'.
Re: Time for Makefiles to Make a Comeback
#7Earlier quoted context omitted.
The data model of makefiles is perfect for watching and rebuilding. All you need to add is something that monitors the source files for any changes and runs 'make'.
That sounds like a great idea. Does anything like that exist already?
http://man7.org/linux/man-pages/man1/inotifywait.1.html
or just use tup
Re: Time for Makefiles to Make a Comeback
#8Earlier quoted context omitted.
The data model of makefiles is perfect for watching and rebuilding. All you need to add is something that monitors the source files for any changes and runs 'make'.
That sounds like a great idea. Does anything like that exist already?
Re: Time for Makefiles to Make a Comeback
#9I'm confused So its agreeable that the building pipeline of NPM calling some packer does replace any-other-language calling any-other-packer, but what is the point in replacing the role of `npm build`, with a makefile that just calls what npm would of called anyways? replacing make with npm with make-calling-npm?
Re: Time for Makefiles to Make a Comeback
#10Earlier quoted context omitted.
The data model of makefiles is perfect for watching and rebuilding. All you need to add is something that monitors the source files for any changes and runs 'make'.
That sounds like a great idea. Does anything like that exist already?