PracticeDev/study_makefile/makefile4/Makefile

8 lines
161 B
Makefile

some_file: other_file
echo "This will run second, because it depends on other_file"
touch some_file
other_file:
echo "This will run first"
touch other_file