https://github.com/libfirm/firm-homepage
libfirm.org homepage sources
https://github.com/libfirm/firm-homepage
Last synced: about 1 month ago
JSON representation
libfirm.org homepage sources
- Host: GitHub
- URL: https://github.com/libfirm/firm-homepage
- Owner: libfirm
- Created: 2016-12-30T00:36:16.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-01-09T09:44:58.000Z (over 1 year ago)
- Last Synced: 2025-06-18T15:47:21.319Z (about 1 year ago)
- Language: C
- Size: 342 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Firm Website
Generate content from here to be hosted at [libfirm.org](http://libfirm.org).
Requirements to build the homepage:
* asciidoc
* cparser/libfirm
* [ycomp](http://libfirm.org/yComp)
* doxygen
* pygments
If your libfirm is not at `../cparser/libfirm` relative to this directory,
create a `config.mak` file according to `config.mak.example`.
Executing `make` from the root builds everything into the `build/website` directory.
# Build Example
(using nix)
```
$ git clone https://github.com/libfirm/firm-homepage.git
$ cd firm-homepage
$ nix develop
$ cd ..
$ git clone --recursive https://github.com/libfirm/cparser.git
$ cd cparser
$ make
$ cd ..
$ cd firm-homepage
$ make
$ cd build/website
$ git add -u
$ git add .
$ git commit -m "Update"
$ git push github master
```