Skip to content

Commit

Permalink
the creation of README.pdf in the Makefile is no longer part of all
Browse files Browse the repository at this point in the history
nickeldan committed May 16, 2021
1 parent 08c22e8 commit dfdd9b2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ all: _all
VASQ_DIR := .
include make.mk

.PHONY: all _all clean $(CLEAN_TARGETS)
.PHONY: all _all clean doc $(CLEAN_TARGETS)

_all: $(VASQ_SHARED_LIBRARY) $(VASQ_STATIC_LIBRARY) $(TESTS) README.pdf

@@ -25,6 +25,8 @@ _all: $(VASQ_SHARED_LIBRARY) $(VASQ_STATIC_LIBRARY) $(TESTS) README.pdf
tests/test_%.o: tests/test_%.c $(VASQ_HEADER_FILES)
$(CC) $(CFLAGS) -I$(VASQ_INCLUDE_DIR) -c $< -o $@

doc: README.pdf

README.pdf: README.rst
rst2pdf $< -o $@

0 comments on commit dfdd9b2

Please sign in to comment.