diff options
| author | Blake Romero <blake@blkrom.com> | 2024-09-19 18:10:46 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2024-10-30 10:13:26 +0000 |
| commit | 80bc109350c9d7d49083c0b92b13df3bd3326477 (patch) | |
| tree | 2fd2acc5f93022b78b4ba3ad99f379e873a4674b | |
| parent | 48e1ff994eff48b791541201217a3c73ca81947a (diff) | |
Fix info var output & remove verbose output for tests
| -rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -20,7 +20,7 @@ all: test .PHONY: test test: $(test_bins) - for test in $(test_bins); do ./$$test --verbose; done + for test in $(test_bins); do ./$$test ; done .PHONY: clean clean: @@ -31,10 +31,10 @@ demo: $(bin_dir)/demo .PHONY: info info: - @printf "src_files: %s\n" $(src_files) - @printf "obj_files: %s\n" $(obj_files) - @printf "test_files: %s\n" $(test_files) - @printf "test_bins: %s\n" $(test_bins) + @printf "src_files: %s\n" "$(src_files)" + @printf "obj_files: %s\n" "$(obj_files)" + @printf "test_files: %s\n" "$(test_files)" + @printf "test_bins: %s\n" "$(test_bins)" # Make Directories $(obj_dir): @@ -44,7 +44,7 @@ $(bin_dir): mkdir $@ # Make object files -$(obj_dir)/%.o: $(src_dir)/%.c $(obj_dir) +$(obj_dir)/%.o: $(src_files) $(obj_dir) $(CC) $(CFLAGS) -o $@ -c $< # Make test binaries |
