17 lines
341 B
Plaintext
17 lines
341 B
Plaintext
exercisers=tests/exercisers
|
|
|
|
EXERCISE=$(exercisers)/flags
|
|
|
|
TESTFRAMEWORK += $(EXERCISE)
|
|
|
|
$(exercisers)/flags: $(exercisers)/flags.o $(MKDLIB)
|
|
$(LINK) -o $@ $@.o -lmarkdown
|
|
|
|
all_subdirs:: $(EXERCISE)
|
|
|
|
verify_subdirs:: $(EXERCISE)
|
|
@for x in $(EXERCISE); do LD_LIBRARY_PATH="." $$x || exit 1; done
|
|
|
|
clean_subdirs::
|
|
rm -f $(exercisers)/*.o
|