Skip to content

Commit 8171d5c

Browse files
committed
clean logs.sqlite3
1 parent eb2482f commit 8171d5c

File tree

13 files changed

+38
-13
lines changed

13 files changed

+38
-13
lines changed

gfe_examples/Conways/partitioned_example_a_no_vis_no_buffer/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ SOURCES = conways_cell.c
2020

2121
APP_OUTPUT_DIR := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))/
2222
# key for the database in this APP_OUTPUT_DIR
23-
DATABASE_KEY = G
23+
DATABASE_KEY = W
24+
25+
APP_CLEAN := $(APP_OUTPUT_DIR)logs.sqlite3 $(APP_OUTPUT_DIR)*.aplx
2426

2527
include $(FEC_INSTALL_DIR)/make/fec.mk

gfe_examples/Conways/partitioned_example_b_no_vis_buffer/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ SOURCES = conways_cell.c
2020

2121
APP_OUTPUT_DIR := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))/
2222
# key for the database in this APP_OUTPUT_DIR
23-
DATABASE_KEY = G
23+
DATABASE_KEY = V
24+
25+
APP_CLEAN := $(APP_OUTPUT_DIR)logs.sqlite3 $(APP_OUTPUT_DIR)*.aplx
2426

2527
include $(FEC_INSTALL_DIR)/make/fec.mk

gfe_examples/hello_world/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ SOURCES = hello_world.c
2020

2121
APP_OUTPUT_DIR := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))/
2222
# key for the database in this APP_OUTPUT_DIR
23-
DATABASE_KEY = G
23+
DATABASE_KEY = H
24+
25+
APP_CLEAN := $(APP_OUTPUT_DIR)logs.sqlite3 $(APP_OUTPUT_DIR)*.aplx
2426

2527
include $(FEC_INSTALL_DIR)/make/fec.mk

gfe_examples/hello_world_untimed/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ SOURCES = hello_world.c
2020

2121
APP_OUTPUT_DIR := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))/
2222
# key for the database in this APP_OUTPUT_DIR
23-
DATABASE_KEY = G
23+
DATABASE_KEY = U
24+
25+
APP_CLEAN := $(APP_OUTPUT_DIR)logs.sqlite3 $(APP_OUTPUT_DIR)*.aplx
2426

2527
include $(FEC_INSTALL_DIR)/make/fec.mk

gfe_examples/live_io/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ SOURCES = live_io.c
2020

2121
APP_OUTPUT_DIR := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))/
2222
# key for the database in this APP_OUTPUT_DIR
23-
DATABASE_KEY = G
23+
DATABASE_KEY = L
24+
25+
APP_CLEAN := $(APP_OUTPUT_DIR)logs.sqlite3 $(APP_OUTPUT_DIR)*.aplx
2426

2527
include $(FEC_INSTALL_DIR)/make/fec.mk

gfe_examples/sync_test/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ SOURCES = sync_test.c
2020

2121
APP_OUTPUT_DIR := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))/
2222
# key for the database in this APP_OUTPUT_DIR
23-
DATABASE_KEY = G
23+
DATABASE_KEY = Y
24+
25+
APP_CLEAN := $(APP_OUTPUT_DIR)logs.sqlite3 $(APP_OUTPUT_DIR)*.aplx
2426

2527
include $(FEC_INSTALL_DIR)/make/fec.mk

gfe_examples/template/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ SOURCES = c_template_vertex.c
2323

2424
APP_OUTPUT_DIR := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))/
2525
# key for the database in this APP_OUTPUT_DIR
26-
DATABASE_KEY = G
26+
# Users copying this should change the Q to a lower case character
27+
DATABASE_KEY = Q
28+
29+
APP_CLEAN := $(APP_OUTPUT_DIR)logs.sqlite3 $(APP_OUTPUT_DIR)*.aplx
2730

2831
include $(FEC_INSTALL_DIR)/make/fec.mk

gfe_integration_tests/sdram_edge_tests/common/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ SOURCES = sdram.c
2020

2121
APP_OUTPUT_DIR := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))/
2222
# key for the database in this APP_OUTPUT_DIR
23-
DATABASE_KEY = G
23+
DATABASE_KEY = E
24+
25+
APP_CLEAN := $(APP_OUTPUT_DIR)logs.sqlite3 $(APP_OUTPUT_DIR)*.aplx
2426

2527
include $(FEC_INSTALL_DIR)/make/fec.mk

gfe_integration_tests/test_extra_monitor/Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ SOURCES = sdram_writer.c
2020

2121
APP_OUTPUT_DIR := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))/
2222
# key for the database in this APP_OUTPUT_DIR
23-
DATABASE_KEY = G
23+
DATABASE_KEY = X
24+
25+
APP_CLEAN := $(APP_OUTPUT_DIR)logs.sqlite3 $(APP_OUTPUT_DIR)*.aplx
2426

2527
include $(FEC_INSTALL_DIR)/make/fec.mk

gfe_integration_tests/test_profile/test_profile.mk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ SOURCES = test_profile.c
2020

2121
APP_OUTPUT_DIR := $(abspath $(dir $(abspath $(lastword $(MAKEFILE_LIST)))))/
2222
# key for the database in this APP_OUTPUT_DIR
23-
DATABASE_KEY = G
23+
DATABASE_KEY = O
24+
25+
APP_CLEAN := $(APP_OUTPUT_DIR)logs.sqlite3 $(APP_OUTPUT_DIR)*.aplx
2426

2527
# The spinnaker_tools standard makefile
2628
include $(FEC_INSTALL_DIR)/make/fec.mk

0 commit comments

Comments
 (0)