Skip to content

Instantly share code, notes, and snippets.

@val314159
Created October 18, 2018 04:22
Show Gist options
  • Save val314159/ed88d26530b3ce0962b62c19b44f8e29 to your computer and use it in GitHub Desktop.
Save val314159/ed88d26530b3ce0962b62c19b44f8e29 to your computer and use it in GitHub Desktop.
Real Quick Example
#include<stdio.h>
int main(){
printf("hi, all\n");
}
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