Last active
August 29, 2015 14:11
-
-
Save deryni/ba329ef8e4fbdd358692 to your computer and use it in GitHub Desktop.
SO 27365859 repro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ make -f Makefile2 -j2 | |
touch ver.h | |
sleep 1 | |
touch ver.h | |
sleep 1 | |
touch ver.cpp | |
touch ver.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ver.%: Makefile | |
touch ver.h | |
sleep 1 | |
touch ver.cpp | |
.PHONY: clean all | |
all: ver.h ver.cpp | |
clean: | |
rm -f ver.h ver.cpp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment