aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2010-10-24 10:22:06 +0200
committerSylvain Munaut <tnt@246tNt.com>2010-10-24 10:22:06 +0200
commit96b1c3b2b444b7d9c3105c22352cb4415d8e2086 (patch)
tree54f270b9f865923e213142953450c1a20a748be9 /src
Initial skeleton import
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am5
-rw-r--r--src/main.c23
2 files changed, 28 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000..a8fe29d
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,5 @@
+INCLUDES = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)
+AM_CFLAGS=-Wall
+
+bin_PROGRAMS = gapk
+gapk_SOURCES = main.c
diff --git a/src/main.c b/src/main.c
new file mode 100644
index 0000000..3503bab
--- /dev/null
+++ b/src/main.c
@@ -0,0 +1,23 @@
+/* Main */
+
+/*
+ * This file is part of gapk (GSM Audio Pocket Knife).
+ *
+ * gapk is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * gapk is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with gapk. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+int main(int argc, char *argv[])
+{
+ return 0;
+}