Improve build system

This commit is contained in:
Alex Kotov 2022-06-02 17:48:07 +03:00
parent 6c71a0345e
commit 3d01bda0d9
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
6 changed files with 13 additions and 7 deletions

15
.gitignore vendored
View File

@ -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

View File

@ -1 +0,0 @@
/usr/share/automake-1.16/INSTALL

0
NEWS
View File

1
NEWS Symbolic link
View File

@ -0,0 +1 @@
NEWS.md

0
NEWS.md Normal file
View File

View File

@ -1,3 +1,5 @@
#!/bin/sh #!/bin/sh
set -eux
exec autoreconf -isf exec autoreconf -isf

View File

@ -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