Skip to content

Commit

Permalink
Fixed #434
Browse files Browse the repository at this point in the history
Added "clean-servo-util" and "clean-servo-net" make targets
Added new targets to "clean-servo" target
  • Loading branch information
khodzha committed May 11, 2013
1 parent 7dbb38c commit 37a94dc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion mk/clean.mk
Expand Up @@ -28,5 +28,11 @@ clean-fast: $(DEPS_CLEAN_TARGETS_FAST) clean-servo
clean-servo-gfx:
cd $(B)/src/servo-gfx/ && rm -rf libservo_gfx*.dylib $(DONE_servo_gfx)

clean-servo: clean-servo-gfx
clean-servo-net:
cd $(B)/src/servo-net/ && rm -rf libservo_net*.dylib $(DONE_servo_net)

clean-servo-util:
cd $(B)/src/servo-util/ && rm -rf libservo_util*.dylib $(DONE_servo_util)

clean-servo: clean-servo-gfx clean-servo-net clean-servo-util
rm -f servo servo-test

0 comments on commit 37a94dc

Please sign in to comment.