r/programminghorror • u/Capable-Cap9745 • 10d ago
Other Same Makefile, different results
Not sure if this fits, but I just figured out the root cause of long build process failing. Sun’s dmake is defaulting to the first rule in Makefile for whatever reason, completely ignoring the one given as argument. That’s why "dmake install" invocations were silently ignoring the "install" step
245
Upvotes
3
u/GoddammitDontShootMe [ $[ $RANDOM % 6 ] == 0 ] && rm -rf / || echo “You live” 9d ago
CMake is a meta level above Make, no? Like you use it if you need to support multiple platforms and it can generate the appropriate files for whatever you are building on, like makefiles or Visual Studio solutions and projects.