Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace GLUT with GLFW #563

Merged
merged 5 commits into from Jul 10, 2013
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Fix clean targets.

  • Loading branch information
metajack committed Jul 4, 2013
commit 39e759fb20582f257f04bf3f99429cfb8adcb2e0
@@ -26,19 +26,19 @@ clean-fast: $(DEPS_CLEAN_TARGETS_FAST) clean-servo
$(Q)echo "$(filter-out $(SLOW_BUILDS),$(DEPS_CLEAN_ALL))"

clean-util:
cd $(B)/src/components/util/ && rm -rf libutil*.dylib $(DONE_util)
cd $(B)/src/components/util/ && rm -rf libutil*.{dylib,so} $(DONE_util)

clean-msg:
cd $(B)/src/components/msg/ && rm -rf libmsg*.dylib $(DONE_msg)
cd $(B)/src/components/msg/ && rm -rf libmsg*.{dylib,so} $(DONE_msg)

clean-net:
cd $(B)/src/components/net/ && rm -rf libnet*.dylib $(DONE_net)
cd $(B)/src/components/net/ && rm -rf libnet*.{dylib,so} $(DONE_net)

clean-gfx:
cd $(B)/src/components/gfx/ && rm -rf libgfx*.dylib $(DONE_gfx)
cd $(B)/src/components/gfx/ && rm -rf libgfx*.{dylib,so} $(DONE_gfx)

clean-script:
cd $(B)/src/components/script/ && rm -rf libscript*.dylib $(DONE_script)
cd $(B)/src/components/script/ && rm -rf libscript*.{dylib,so} $(DONE_script)

clean-servo: clean-gfx clean-util clean-net clean-script
clean-servo: clean-gfx clean-util clean-net clean-script clean-msg
rm -f servo servo-test
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.