aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2023-08-27 21:18:53 +0200
committerJohannes Stoelp <johannes.stoelp@gmail.com>2023-08-27 21:18:53 +0200
commitf396fab26611d6107e223a6a3f41c9dff3e2ee9e (patch)
treed1b22fd265f883404d7e484b7f7c460367a136be /Makefile
parent7a0f884c6b11db6a59cfafce7b53158ad59a365e (diff)
downloadsysc-playground-f396fab26611d6107e223a6a3f41c9dff3e2ee9e.tar.gz
sysc-playground-f396fab26611d6107e223a6a3f41c9dff3e2ee9e.zip
move sources into src/ subdir
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 ---------------------------------------------------------------------