PracticeDev/study_makefile/makefile4/Makefile

8 lines
161 B
Makefile
Raw Normal View History

2022-12-20 17:31:11 +08:00
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