Created
November 19, 2019 00:21
-
-
Save jasom/07521920a5a1e71bc7d66feabfc02bf9 to your computer and use it in GitHub Desktop.
Example of multiuple output files
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: foo.out1 foo.out2 bar.out1 bar.out2 | |
foo.out1: foo.in | |
sh multiple.sh foo.in | |
foo.out2: foo.out1 | |
true | |
bar.out1 bar.out2: bar.in | |
sh multiple.sh bar.in | |
clean: | |
rm -f *.out1 *.out2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment