Last active
August 15, 2018 07:31
-
-
Save kmsheng/c89a3852983921bc5d790c410a6f4341 to your computer and use it in GitHub Desktop.
Makefile simple example
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
all: target1 target2 | |
target1: | |
@echo "Running $@" | |
target2: | |
@echo "Running $@" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment