Skip to content

Commit

Permalink
build: separating c and c++ check-doc targets
Browse files Browse the repository at this point in the history
  • Loading branch information
jgaeddert committed Jul 13, 2024
1 parent 0ddff9c commit 9f32eb7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -1409,7 +1409,11 @@ readme.cc.example.o : %.o : %.cc ${include_headers}
readme.cc.example : % : %.o ${ARCHIVE_LIB}
${CXX} ${CXXFLAGS} ${LDFLAGS} $^ -o $@ ${LIBS}

check-doc : readme.c.example readme.cc.example ; ./readme.c.example && ./readme.cc.example
check-doc-c : readme.c.example ; ./readme.c.example

check-doc-cc : readme.cc.example ; ./readme.cc.example

check-doc : check-doc-c check-doc-cc

clean-check-doc:
${RM} readme.*.example*
Expand Down

0 comments on commit 9f32eb7

Please sign in to comment.