diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-10 21:09:39 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2012-12-10 21:09:39 -0800 |
| commit | f51563c610e7194aa4ccfdaf723c359fb812e694 (patch) | |
| tree | 43cc4020d2f7d4db9c632fb2953ede1bc2f679aa | |
| parent | 57482ef3f04f158b9ec2f73369e1b697de8124c3 (diff) | |
| parent | e61b0290ac4b6bdc2a915efb3cff129087619e45 (diff) | |
| download | mruby-f51563c610e7194aa4ccfdaf723c359fb812e694.tar.gz mruby-f51563c610e7194aa4ccfdaf723c359fb812e694.zip | |
Merge pull request #615 from mattn/fix_quote_win32
remove double quote.
| -rw-r--r-- | mrbgems/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mrbgems/Makefile b/mrbgems/Makefile index c9cd7add2..2c0a0962c 100644 --- a/mrbgems/Makefile +++ b/mrbgems/Makefile @@ -40,15 +40,15 @@ $(GEM_INIT).a : $(GEM_INIT).o all_gems : $(GENERATOR_BIN) @echo "Generate Gem List Makefile" - $(GENERATOR_BIN) makefile_list "$(ACTIVE_GEMS)" > $(GEM_MAKEFILE_LIST) + $(GENERATOR_BIN) makefile_list $(ACTIVE_GEMS) > $(GEM_MAKEFILE_LIST) @echo "Generate Gem Makefile" - $(GENERATOR_BIN) makefile "$(ACTIVE_GEMS)" "$(MRUBY_ROOT)" > $(GEM_MAKEFILE) + $(GENERATOR_BIN) makefile $(ACTIVE_GEMS) "$(MRUBY_ROOT)" > $(GEM_MAKEFILE) @echo "Build all gems" $(MAKE) -C g MRUBY_ROOT='$(MRUBY_ROOT)' ACTIVE_GEMS="$(ACTIVE_GEMS)" $(GEM_INIT).c : $(GENERATOR_BIN) @echo "Generate Gem driver" - $(GENERATOR_BIN) $(GEM_INIT) "$(ACTIVE_GEMS)" > $@ + $(GENERATOR_BIN) $(GEM_INIT) $(ACTIVE_GEMS) > $@ $(GEM_INIT).o : $(GEM_INIT).c @echo "Build the driver which initializes all gems" @@ -71,6 +71,6 @@ prepare-test : .PHONY : clean clean : $(GENERATOR_BIN) @echo "Cleanup Gems" - $(GENERATOR_BIN) makefile "$(ACTIVE_GEMS)" "$(MRUBY_ROOT)" > $(GEM_MAKEFILE) + $(GENERATOR_BIN) makefile $(ACTIVE_GEMS) "$(MRUBY_ROOT)" > $(GEM_MAKEFILE) $(MAKE) clean -C g ACTIVE_GEMS="$(ACTIVE_GEMS)" MRUBY_ROOT='$(MRUBY_ROOT)' -$(RM_F) $(GEM_INIT).c *.o *.d $(GENERATOR_BIN) $(GEM_MAKEFILE) $(GEM_MAKEFILE_LIST) gem_init.a |
