mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-16 00:00:02 +01:00
- Build RPM packages for VILLASnode and dependencies with the ‚rpm‘, ‚rpm-villas‘, ‚rpm-livxil‘ and ‚rpm-libwebsockets‘ make targets - Upload new RPM packages to the repository with the ‚deploy‘ make target - Build a developer Docker image with the `docker-dev` target - Run the developer image with the `run-docker-dev` target - Build a production Docker image with the `docker` target This requires that all RPM packages have been build previously! - Use hard-coded default paths where applicable - Updated index website - Added some usage information and hints Documentation of the new system is still outstanding
11 lines
No EOL
312 B
Makefile
11 lines
No EOL
312 B
Makefile
doc: | $(BUILDDIR)/doc/
|
|
( cat Doxyfile ; echo "OUTPUT_DIRECTORY=$(BUILDDIR)/doc/" ) | doxygen -
|
|
|
|
install-doc: doc
|
|
mkdir -p $(DESTDIR)$(PREFIX)/share/villas/node/doc/
|
|
cp -R $(BUILDDIR)/doc/html/* $(DESTDIR)$(PREFIX)/share/villas/node/doc/
|
|
|
|
clean-doc:
|
|
rm -rf $(BUILDDIR)/doc/
|
|
|
|
.PHONY: doc install-doc clean-doc |