Skip to content

Commit

Permalink
Merge pull request sass#1365 from saper/cleanlibdir
Browse files Browse the repository at this point in the history
Remove lib/ directory on clean
  • Loading branch information
mgreter committed Jul 22, 2015
2 parents 005bf34 + a6c47a0 commit 2c1af24
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ CXX ?= g++
RM ?= rm -f
CP ?= cp -a
MKDIR ?= mkdir
RMDIR ?= rmdir
WINDRES ?= windres
INSTALL ?= install
CFLAGS ?= -Wall
Expand Down Expand Up @@ -290,7 +291,8 @@ test_issues: $(SASSC_BIN)
$(RUBY_BIN) $(SASS_SPEC_PATH)/sass-spec.rb -c $(SASSC_BIN) $(LOG_FLAGS) $(SASS_SPEC_PATH)/spec/issues

clean-objects:
$(RM) lib/*.a lib/*.so lib/*.dll lib/*.la
-$(RM) lib/*.a lib/*.so lib/*.dll lib/*.la
-$(RMDIR) lib
clean: clean-objects
$(RM) $(CLEANUPS)

Expand Down

0 comments on commit 2c1af24

Please sign in to comment.