Skip to content

Commit a3a77c0

Browse files
committed
clean logs.sqlite3
1 parent e891dfd commit a3a77c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

neural_modelling/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
1616
NEURAL_MODELLING_DIRS := $(abspath $(dir $(MAKEFILE_PATH)))
17-
APP_OUTPUT_DIR := $(abspath $(NEURAL_MODELLING_DIRS)/../spynnaker/pyNN/model_binaries)
17+
APP_OUTPUT_DIR := $(NEURAL_MODELLING_DIRS)/../spynnaker/pyNN/model_binaries/
1818

1919
BUILDS = synapse_expander \
2020
spike_source/poisson \
@@ -43,8 +43,8 @@ all: $(DIRS)
4343
for d in $(DIRS); do $(MAKE) -C $$d || exit $$?; done
4444

4545
clean: $(DIRS)
46-
$(RM) $(APP_OUTPUT_DIR)/logs.sqlite3
47-
$(RM) $(APP_OUTPUT_DIR)/*.aplx
46+
$(RM) $(APP_OUTPUT_DIR)logs.sqlite3
47+
$(RM) $(APP_OUTPUT_DIR)*.aplx
4848
for d in $(DIRS); do $(MAKE) -C $$d clean || exit $$?; done
4949

5050
# This installs the source and makefiles into a central location so that

0 commit comments

Comments
 (0)