Skip to content
This repository has been archived by the owner on Sep 21, 2021. It is now read-only.

Commit

Permalink
Makefile fixes
Browse files Browse the repository at this point in the history
Fix clean and distclean recipes.
  • Loading branch information
dvdfreitag committed Mar 7, 2018
1 parent 1ecdfa0 commit ed12a58
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SOURCE_ROOT := ./
SOURCE_ROOT := .
BUILD_DIR := $(SOURCE_ROOT)/build/

LIBTRANSISTOR_HOME := $(realpath .)/dist
Expand Down Expand Up @@ -50,7 +50,8 @@ dist: $(DIST)
default: $(DIST)

clean: clean_transistor clean_test
rm -rf $(LIBTRANSISTOR_HOME)/docs
rm -rf $(SOURCE_ROOT)/docs

distclean: clean clean_newlib clean_compiler-rt clean_pthread clean_sdl2 clean_libcxx clean_liblzma clean_openlibm
rm -rf $(LIBTRANSISTOR_HOME)/dist
distclean:
rm -rf $(BUILD_DIR)
rm -rf $(LIBTRANSISTOR_HOME)

0 comments on commit ed12a58

Please sign in to comment.