This commit is contained in:
Nicholas O'Connor
2017-03-12 15:43:11 -07:00
commit 01e425ca68
4 changed files with 19 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
SUBDIRS = src
+12
View File
@@ -0,0 +1,12 @@
AC_INIT([cellar], [0])
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
AC_PROG_CXX
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
src/Makefile
])
AC_OUTPUT
+2
View File
@@ -0,0 +1,2 @@
bin_PROGRAMS = cellar
cellar_SOURCES = cellar.cpp
+4
View File
@@ -0,0 +1,4 @@
int main(int argc, char* argv[]) {
// stub
return 0;
}