Last active
October 20, 2016 09:13
-
-
Save wordijp/b0da847d0f5adb113bd3b38d5463ced3 to your computer and use it in GitHub Desktop.
-pオプションの無いWindowsで必要時だけフォルダを作成するmakefile
This file contains hidden or 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
| all: obj $(TARGET) | |
| obj: | |
| mkdir obj | |
| $(TARGET): ... | |
| # ここには含めない | |
| .PHONY: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment