Skip to content
Draft
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
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Autotools generated files - should not be committed
/configure
/Makefile
/Makefile.in
/aclocal.m4
/autom4te.cache/
/compile
/config.log
/config.status
/install-sh
/missing
/COPYING
/INSTALL
*.tar.gz
configure~
*~configure~
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# kepler-formal authors
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# ChangeLog for kepler-formal
5 changes: 5 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Minimal Makefile.am for kepler-formal
# This file is required by automake to generate Makefile.in

# Empty for now - this allows autoreconf to run successfully
# The actual build is handled by CMake
1 change: 1 addition & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# News for kepler-formal
5 changes: 5 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
AC_INIT([kepler-formal], [0.1])
AM_INIT_AUTOMAKE
AC_PROG_CC
AC_CONFIG_FILES([Makefile])
AC_OUTPUT