Files
yup-oauth2/Makefile
Sebastian Thiel 37231fad2e chore(make): added makefile
* It should help to keep track of how to properly call cargo in nightly
  mode. After all, I have wasted some time, multiple times just trying
  to figure out that I forgot to add the nightly feature.
* Slightly improved structure of lib.rs and includes

Related to #12
2015-06-11 10:57:57 +02:00

11 lines
335 B
Makefile

.PHONY = nightly
help:
$(info -- Targets -- )
$(info )
$(info nightly - run cargo with nightly configuration, set ARGS to something like 'build'. rustc must be set to nightly)
$(info _____________Note that for using stable, you can use cargo directly)
$(info )
nightly:
cargo $(ARGS) --no-default-features --features=nightly