You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
box-o-sand/lcthw/Makefile

24 lines
392 B

CFLAGS ?= -Wall -g
GDBRUN = gdb --batch --ex run --ex bt --ex q --args
BUILD_TARGETS = ex1 ex3 ex7 ex8
.PHONY: all
all: build test
.PHONY: clean
clean:
rm -f $(BUILD_TARGETS)
.PHONY: build
build: $(BUILD_TARGETS)
.PHONY: gtest
gtest:
@$(foreach bt,$(BUILD_TARGETS),$(GDBRUN) ./$(bt) &&) \
echo ' gYAY'
.PHONY: test
test:
@$(foreach bt,$(BUILD_TARGETS),./$(bt) &&) \
echo ' YAY'