init
This commit is contained in:
commit
01e425ca68
1
Makefile.am
Normal file
1
Makefile.am
Normal file
@ -0,0 +1 @@
|
||||
SUBDIRS = src
|
12
configure.ac
Normal file
12
configure.ac
Normal 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
src/Makefile.am
Normal file
2
src/Makefile.am
Normal file
@ -0,0 +1,2 @@
|
||||
bin_PROGRAMS = cellar
|
||||
cellar_SOURCES = cellar.cpp
|
4
src/cellar.cpp
Normal file
4
src/cellar.cpp
Normal file
@ -0,0 +1,4 @@
|
||||
int main(int argc, char* argv[]) {
|
||||
// stub
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user