aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index f22fbd0..3631e55 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,8 @@ export CXX = clang++
export SYSTEMC_HOME := $(PWD)/INSTALL
-SRCS = $(wildcard *.cc)
-BINS = $(SRCS:%.cc=BUILD/UTIL/%)
+SRCS = $(wildcard src/*.cc)
+BINS = $(SRCS:src/%.cc=BUILD/PLAYGROUND/%)
# -- SYSTEMC UTILS -------------------------------------------------------------
@@ -45,7 +45,7 @@ systemc:
# -- UTIL ----------------------------------------------------------------------
fmt:
- clang-format -i *.cc *.h
+ clang-format -i src/*.cc src/*.h
# -- CLEAN ---------------------------------------------------------------------