Kinda extra credit ex12

main
Dan Buch 2 weeks ago
parent 32e70e96ce
commit df5d4f5a1f
Signed by: meatballhat
GPG Key ID: A12F782281063434

@ -15,16 +15,16 @@ build: $(BUILD_TARGETS)
.PHONY: gtest
gtest:
@$(foreach bt, \
$(TEST_TARGETS), \
printf '\n==> $(bt)\n' && $(GDBRUN) ./$(bt) && \
) \
@$(foreach bt, $(TEST_TARGETS), make .gtest.$(bt) &&) \
printf '\ngYAY\n'
.gtest.%:
printf '\n==> %s\n' "$*" && $(GDBRUN) ./$*
.PHONY: test
test:
@$(foreach bt, \
$(TEST_TARGETS), \
printf '\n==> %s\n' "$(bt)" && ./$(bt) && \
) \
@$(foreach bt, $(TEST_TARGETS), make .test.$(bt) &&) \
printf '\nYAY\n'
.test.%:
printf '\n==> %s\n' "$*" && ./$*

@ -7,7 +7,7 @@ int main(int argc, char *argv[])
char full_name[] = {
'Z', 'e', 'd',
' ', 'A', '.', ' ',
'S', 'h', 'a', 'w',
'S', 'h', 'a', 'w', '\0',
};
// WARNING: On some systems you may have to change the

Loading…
Cancel
Save