Makefile + hello

This commit is contained in:
Frédéric Mangano 2013-01-01 12:24:10 +01:00
commit a9d30274c6
2 changed files with 15 additions and 0 deletions

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
CC=clang
CFLAGS=-Wall
LDFLAGS=-logg
all: opustags
opustags: opustags.c
clean:
rm -f opustags

5
opustags.c Normal file
View File

@ -0,0 +1,5 @@
#include <stdlib.h>
int main(int argc, char **argv){
return EXIT_SUCCESS;
}