commit a9d30274c65796f3400d34fe6a3ddf95c362c0e9 Author: Frédéric Mangano Date: Tue Jan 1 12:24:10 2013 +0100 Makefile + hello diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..0a889a1 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +CC=clang +CFLAGS=-Wall +LDFLAGS=-logg + +all: opustags + +opustags: opustags.c + +clean: + rm -f opustags diff --git a/opustags.c b/opustags.c new file mode 100644 index 0000000..bd31ec1 --- /dev/null +++ b/opustags.c @@ -0,0 +1,5 @@ +#include + +int main(int argc, char **argv){ + return EXIT_SUCCESS; +}