.PHONY: test-system mrproper

################################################################
# Build tasks

# NOTE: this makefile uses implicit make rules for C programs, so that only
# those targets for which the default rule isn't enough have an explicit rule.
# This includes anything that needs an extra object file.

################################################################
# Test tasks

test-system: test_system test_system.sh
	./test_system.sh

mrproper:
	$(RM) test_system
