Initial, autotools version

Signed-off-by: Gergely Polonkai (W00d5t0ck) <polesz@w00d5t0ck.info>
This commit is contained in:
Gergely Polonkai (W00d5t0ck)
2012-02-21 18:38:12 +01:00
parent 036cf31133
commit c4726682b1
10 changed files with 703 additions and 0 deletions

5
src/Makefile.am Normal file
View File

@@ -0,0 +1,5 @@
bin_PROGRAMS = rpgserv
AM_CFLAGS = $(MEMCACHED_CFLAGS)
rpgserv_SOURCES = main.c
rpgserv_LDADD = $(MEMCACHED_LIBS)

6
src/main.c Normal file
View File

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