| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- GCC = gcc
- CFLAGS = -g -Wall -Wshadow
- LIBS =
- SOURCES = answer01.c pa01.c
- TARGET = pa01
- TESTCASES := $(shell seq 0 19)
- # -------------------------------------------------------------
- TESTS := $(addprefix test,${TESTCASES})
- .PHONY : all build clean environment help testall $(TESTS)
- .DEFAULT_GOAL := build
- OBJF = obj
- OBJS = $(patsubst %.c,$(OBJF)/%.o,$(SOURCES))
- -include $(SOURCES:%=$(OBJF)/%.P)
- all: | build testall
- testall: | $(TARGET) $(TESTS)
- build: $(TARGET)
- clean:
- @cd $(CURDIR)
- rm -rf $(TARGET) $(OBJF) outputs
- environment:
- @cd $(CURDIR)
- @mkdir -p outputs
- @mkdir -p $(OBJF)
- help:
- @echo
- @echo " You do NOT need to use make to run your program. (See below.)"
- @echo
- @echo " make Build $(TARGET)"
- @echo " make testall Run /all/ testcases"
- @echo " make clean Remove all temporary files"
- @echo " make help Print this message"
- @echo
- @echo " After building $(TARGET), you can run it manually as follows:"
- @echo
- @echo " aturing > ./$(TARGET) -h"
- @echo
- @echo " It is highly recommended that you do this as you debug and"
- @echo " test your code."
- @echo
- @echo " There are 20 testcases. (i.e., 0 through 19.) You can run an "
- @echo " individual testcase as follows:"
- @echo
- @echo " make test0 Run the zeroeth testcase"
- @echo " make test1 Run the first testcase"
- @echo " ... etc."
- @echo
- $(TARGET): $(OBJS) | environment
- $(GCC) $(CFLAGS) $(OBJS) $(LIBS) -o $@
- $(OBJF)/%.o: %.c | environment
- @$(GCC) -MM $(CFLAGS) $< | sed 's,^\([^ ]\),$(OBJF)\/\1,g' | sed '$$ s,$$, \\,' > $(OBJF)/$<.P
- $(GCC) $(CFLAGS) -c -o $@ $<
- ${TESTS}: test%: $(TARGET) | environment
- @./bin/test.sh "$(TARGET)" inputs/input$* outputs/output$* expected/expected$* outputs/valgrind-log$*
|