Initial revision with basic autotools tree

Already supporting full GNU Autotools toolset
GTK-Doc support included
Basic .gitignore file

Signed-off-by: Gergely POLONKAI <polesz@w00d5t0ck.info>
This commit is contained in:
Gergely POLONKAI
2012-05-13 00:57:37 +02:00
commit 2d7e0efc57
13 changed files with 1364 additions and 0 deletions

5
src/Makefile.am Normal file
View File

@@ -0,0 +1,5 @@
bin_PROGRAMS = media-remote-control
AM_CPPFLAGS = $(DBUS_GLIB_CFLAGS)
media_remote_control_SOURCES = media-remote-control.c
media_remote_control_LDADD = $(DBUS_GLIB_LIBS)

View File

@@ -0,0 +1,6 @@
int
main(int argc, char **argv)
{
return 0;
}