Skip to content

Instantly share code, notes, and snippets.

@SiegeLord
Created May 15, 2014 16:41
Show Gist options
  • Save SiegeLord/2519eb4536d5a6a17099 to your computer and use it in GitHub Desktop.
Save SiegeLord/2519eb4536d5a6a17099 to your computer and use it in GitHub Desktop.
Simple makefile
all: main
main: main.rs Makefile
rustc --opt-level 3 --dep-info [email protected] -L ~/lib -g $<
-include main.dep
.PHONY: clean
clean:
rm -f main main.dep
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment