diff options
| -rw-r--r-- | .gitignore | 62 | ||||
| -rw-r--r-- | Makefile.am | 1 | ||||
| -rwxr-xr-x | autogen.sh | 3 | ||||
| -rw-r--r-- | configure.ac | 15 | ||||
| -rw-r--r-- | src/Makefile.am | 4 | ||||
| -rwxr-xr-x | src/wayclock | bin | 0 -> 16664 bytes | |||
| -rw-r--r-- | src/wayclock.cc | 1 | ||||
| -rw-r--r-- | src/wayclock.o | bin | 0 -> 3056 bytes |
8 files changed, 86 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ec74a27 --- /dev/null +++ b/.gitignore @@ -0,0 +1,62 @@ +# http://www.gnu.org/software/automake + +**/Makefile.in +**/ar-lib +**/mdate-sh +**/py-compile +**/test-driver +**/ylwrap +**/.deps/ +**/.dirstamp +*~ + +# http://www.gnu.org/software/autoconf + +**/autom4te.cache +**/autoscan.log +**/autoscan-*.log +**/aclocal.m4 +**/compile +**/config.cache +**/config.guess +**/config.h.in +**/config.log +**/config.status +**/config.sub +**/configure +**/configure.scan +**/depcomp +**/install-sh +**/missing +**/stamp-h1 +**/build-aux/ + +# https://www.gnu.org/software/libtool/ + +**/libtool +**/ltmain.sh +**/.libs/ + +# http://www.gnu.org/software/texinfo + +**/texinfo.tex + +# http://www.gnu.org/software/m4/ + +m4/libtool.m4 +m4/ltoptions.m4 +m4/ltsugar.m4 +m4/ltversion.m4 +m4/lt~obsolete.m4 + +# Generated Makefile +# (meta build system like autotools, +# can automatically generate from config.status script +# (which is called by configure script)) +Makefile + +# Build +out*/ +build*/ +.cache/ +compile_commands.json
\ No newline at end of file diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..f963eff --- /dev/null +++ b/Makefile.am @@ -0,0 +1 @@ +SUBDIRS = src
\ No newline at end of file diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..177b1e5 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,3 @@ +#!/usr/bin/env bash + +autoreconf -fi
\ No newline at end of file diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..b45f5bf --- /dev/null +++ b/configure.ac @@ -0,0 +1,15 @@ +AC_INIT([wayclock], [0.1]) + +AC_CONFIG_SRCDIR([configure.ac]) +AC_CONFIG_AUX_DIR([build-aux]) + +AM_INIT_AUTOMAKE([foreign subdir-objects]) +AM_SILENT_RULES([yes]) + +AC_PROG_CXX + +AC_CONFIG_FILES([ + Makefile + src/Makefile +]) +AC_OUTPUT
\ No newline at end of file diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..6d8c943 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,4 @@ +bin_PROGRAMS = wayclock + +wayclock_SOURCES = \ + wayclock.cc
\ No newline at end of file diff --git a/src/wayclock b/src/wayclock Binary files differnew file mode 100755 index 0000000..25ce0e7 --- /dev/null +++ b/src/wayclock diff --git a/src/wayclock.cc b/src/wayclock.cc new file mode 100644 index 0000000..c272dab --- /dev/null +++ b/src/wayclock.cc @@ -0,0 +1 @@ +int main() {}
\ No newline at end of file diff --git a/src/wayclock.o b/src/wayclock.o Binary files differnew file mode 100644 index 0000000..252f7c9 --- /dev/null +++ b/src/wayclock.o |
