mirror of
https://github.com/tailix/loadwarka.git
synced 2024-12-09 14:08:20 -05:00
Improve build system
This commit is contained in:
parent
6c71a0345e
commit
3d01bda0d9
6 changed files with 13 additions and 7 deletions
15
.gitignore
vendored
15
.gitignore
vendored
|
@ -3,9 +3,7 @@
|
||||||
##########################
|
##########################
|
||||||
|
|
||||||
*.a
|
*.a
|
||||||
*.bin
|
|
||||||
*.c.d
|
*.c.d
|
||||||
*.img
|
|
||||||
*.o
|
*.o
|
||||||
|
|
||||||
.deps/
|
.deps/
|
||||||
|
@ -15,6 +13,7 @@
|
||||||
# Always generated in root #
|
# Always generated in root #
|
||||||
############################
|
############################
|
||||||
|
|
||||||
|
/INSTALL
|
||||||
/aclocal.m4
|
/aclocal.m4
|
||||||
/ar-lib
|
/ar-lib
|
||||||
/autom4te.cache/
|
/autom4te.cache/
|
||||||
|
@ -32,6 +31,8 @@
|
||||||
/missing
|
/missing
|
||||||
/test-driver
|
/test-driver
|
||||||
|
|
||||||
|
# Custom
|
||||||
|
|
||||||
/Makefile.in
|
/Makefile.in
|
||||||
|
|
||||||
###########################################
|
###########################################
|
||||||
|
@ -44,11 +45,13 @@
|
||||||
/stamp-h1
|
/stamp-h1
|
||||||
/test-suite.log
|
/test-suite.log
|
||||||
|
|
||||||
/Makefile
|
|
||||||
|
|
||||||
/loadwarka
|
|
||||||
|
|
||||||
/examples/*.log
|
/examples/*.log
|
||||||
/examples/*.trs
|
/examples/*.trs
|
||||||
/tests/test*.log
|
/tests/test*.log
|
||||||
/tests/test*.trs
|
/tests/test*.trs
|
||||||
|
|
||||||
|
# Custom
|
||||||
|
|
||||||
|
/Makefile
|
||||||
|
|
||||||
|
/loadwarka
|
||||||
|
|
1
INSTALL
1
INSTALL
|
@ -1 +0,0 @@
|
||||||
/usr/share/automake-1.16/INSTALL
|
|
0
NEWS
0
NEWS
1
NEWS
Symbolic link
1
NEWS
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
NEWS.md
|
0
NEWS.md
Normal file
0
NEWS.md
Normal file
|
@ -1,3 +1,5 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
|
set -eux
|
||||||
|
|
||||||
exec autoreconf -isf
|
exec autoreconf -isf
|
||||||
|
|
|
@ -8,6 +8,7 @@ AC_INIT([loadwarka],
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_CONFIG_SRCDIR([src/main.c])
|
AC_CONFIG_SRCDIR([src/main.c])
|
||||||
|
|
||||||
|
AC_CANONICAL_BUILD
|
||||||
AC_CANONICAL_HOST
|
AC_CANONICAL_HOST
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue