mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fixed {Docker,Make,Doxy}files for building documentation
This commit is contained in:
parent
0d18c263fd
commit
b434c709f7
3 changed files with 10 additions and 10 deletions
|
@ -25,7 +25,10 @@ RUN apt-get -y install \
|
|||
make \
|
||||
cmake \
|
||||
libc6-dev \
|
||||
pkg-config
|
||||
pkg-config \
|
||||
doxygen \
|
||||
dia \
|
||||
graphviz
|
||||
|
||||
# Install dependencies for native arch
|
||||
RUN apt-get -y install \
|
||||
|
|
8
Doxyfile
8
Doxyfile
|
@ -765,13 +765,7 @@ WARN_LOGFILE = doc/warnings.log
|
|||
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
|
||||
# Note: If this tag is empty the current directory is searched.
|
||||
|
||||
INPUT = server/ \
|
||||
doc/ \
|
||||
clients/ml50x_cpld/ \
|
||||
clients/ml507_ppc440_udp/pcores/ \
|
||||
clients/ml507_ppc440_udp/s2ss/ \
|
||||
clients/ml507_gtfpga_pcie/code/ \
|
||||
clients/opal_udp/models/send_receive/src/
|
||||
INPUT = src/ lib/ include/ doc/
|
||||
|
||||
# This tag can be used to specify the character encoding of the source files
|
||||
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
|
||||
|
|
7
Makefile
7
Makefile
|
@ -77,10 +77,10 @@ endif
|
|||
|
||||
######## Targets ########
|
||||
|
||||
.PHONY: all clean install release docker
|
||||
.PHONY: all clean install release docker doc
|
||||
|
||||
# Default target: build everything
|
||||
all: $(LIBS) $(TARGETS)
|
||||
all: $(LIBS) $(TARGETS) doc
|
||||
|
||||
# Dependencies for individual binaries
|
||||
server: server.o $(OBJS) libs2ss.so
|
||||
|
@ -117,5 +117,8 @@ docker:
|
|||
docker build -t s2ss .
|
||||
docker run -itv $(PWD):/s2ss s2ss
|
||||
|
||||
doc:
|
||||
doxygen
|
||||
|
||||
# Include auto-generated dependencies
|
||||
-include $(wildcard *.d)
|
||||
|
|
Loading…
Add table
Reference in a new issue