Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,14 @@ p7/wired.html
obj/*
run/libwired/*
*.o

# Make related
Makefile
configure
config.log
config.status
config.h
config.h.in
config.h.in~
autom4te.cache

133 changes: 0 additions & 133 deletions Makefile

This file was deleted.

8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,14 @@ Wired library uses several external dependencies, which are usually distributed
* zlib (compression)
* sqlite3 (server backend)

* GNU Autotools, if compiling from the Git repository.

### Getting started

If compiling from the Git repository, first generate the configure script using the following command:

`./bootstrap`

To compile libwired, please refer to the configure help using the following command:

`./configure --help`
Expand All @@ -27,4 +33,4 @@ Use the following commands to generate documentation:

`./documentation`

This will generate a Doxygen style source code documentation in the doc/ directory and a wired.htlm file in the p7/ directory.
This will generate a Doxygen style source code documentation in the doc/ directory and a wired.htlm file in the p7/ directory.
2 changes: 2 additions & 0 deletions bootstrap
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
autoreconf -vi
Loading