Created
October 18, 2018 04:22
-
-
Save val314159/ed88d26530b3ce0962b62c19b44f8e29 to your computer and use it in GitHub Desktop.
Real Quick Example
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
#include<stdio.h> | |
int main(){ | |
printf("hi, all\n"); | |
} |
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
PROG=hi | |
all: test | |
test: $(PROG) ; ./$(PROG) | |
clean: ; rm -fr *.{o,a,so} *~ $(PROG) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment