mirror of
https://github.com/tailix/loadwarka.git
synced 2024-12-02 14:05:11 -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
|
||||
*.bin
|
||||
*.c.d
|
||||
*.img
|
||||
*.o
|
||||
|
||||
.deps/
|
||||
|
@ -15,6 +13,7 @@
|
|||
# Always generated in root #
|
||||
############################
|
||||
|
||||
/INSTALL
|
||||
/aclocal.m4
|
||||
/ar-lib
|
||||
/autom4te.cache/
|
||||
|
@ -32,6 +31,8 @@
|
|||
/missing
|
||||
/test-driver
|
||||
|
||||
# Custom
|
||||
|
||||
/Makefile.in
|
||||
|
||||
###########################################
|
||||
|
@ -44,11 +45,13 @@
|
|||
/stamp-h1
|
||||
/test-suite.log
|
||||
|
||||
/Makefile
|
||||
|
||||
/loadwarka
|
||||
|
||||
/examples/*.log
|
||||
/examples/*.trs
|
||||
/tests/test*.log
|
||||
/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
|
||||
|
||||
set -eux
|
||||
|
||||
exec autoreconf -isf
|
||||
|
|
|
@ -8,6 +8,7 @@ AC_INIT([loadwarka],
|
|||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_CONFIG_SRCDIR([src/main.c])
|
||||
|
||||
AC_CANONICAL_BUILD
|
||||
AC_CANONICAL_HOST
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue