abg

Animated background for X11
git clone git://git.laack.co/abg.git
Log | Files | Refs | README | LICENSE

commit 0e4f0afe773e80ae7be73e2a8f68fa5b19a2554e
parent 035d047f00cfd5659b2f8d3c660d40bb8a6af97c
Author: Andrew Laack <andrew@laack.co>
Date:   Wed, 16 Sep 2026 11:09:57 -0500

Updated makefile for tests

Diffstat:
MMakefile | 26+++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/Makefile b/Makefile @@ -10,7 +10,7 @@ man: install: build man cp abg.out /usr/local/bin/abg clean: - rm abg.out + rm *.out # other fmt: @@ -20,22 +20,22 @@ format: fmt # snapshot update snapshot-update: - ${TCOMMAND_P} tests/snapshot_update.cpp ${TCOMMAND_S} -o snapshot_update - ./snapshot_update - rm snapshot_update + ${TCOMMAND_P} tests/snapshot_update.cpp ${TCOMMAND_S} -o snapshot_update.out + ./snapshot_update.out + rm snapshot_update.out # tests snapshot-test: - ${TCOMMAND_P} tests/snapshot_test.cpp ${TCOMMAND_S} -o snapshot_tests - ./snapshot_tests - rm snapshot_tests + ${TCOMMAND_P} tests/snapshot_test.cpp ${TCOMMAND_S} -o snapshot_tests.out + ./snapshot_tests.out + rm snapshot_tests.out graph-test: - ${TCOMMAND_P} tests/graph_test.cpp ${TCOMMAND_S} -o graph_tests - ./graph_tests - rm graph_tests + ${TCOMMAND_P} tests/graph_test.cpp ${TCOMMAND_S} -o graph_tests.out + ./graph_tests.out + rm graph_tests.out algo-test: - ${TCOMMAND_P} tests/algo_test.cpp ${TCOMMAND_S} -o algo_tests - ./algo_tests - rm algo_tests + ${TCOMMAND_P} tests/algo_test.cpp ${TCOMMAND_S} -o algo_tests.out + ./algo_tests.out + rm algo_tests.out test: format snapshot-test graph-test algo-test