X-Git-Url: http://matita.cs.unibo.it/gitweb/?p=helm.git;a=blobdiff_plain;f=helm%2Fmetadata%2Fextractor%2FMakefile;fp=helm%2Fmetadata%2Fextractor%2FMakefile;h=0000000000000000000000000000000000000000;hp=4b6f01aa825778abafd3e3356a9ca7e614b602e5;hb=1696761e4b8576e8ed81caa905fd108717019226;hpb=5325734bc2e4927ed7ec146e35a6f0f2b49f50c1 diff --git a/helm/metadata/extractor/Makefile b/helm/metadata/extractor/Makefile deleted file mode 100644 index 4b6f01aa8..000000000 --- a/helm/metadata/extractor/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -CC = gcc -Wall - -all: meta meta_ind - -meta: lex.yy.o sthandler.o - $(CC) lex.yy.o sthandler.o -lpq -o meta - -meta_ind: lex.yy_ind.o sthandler.o - $(CC) lex.yy_ind.o sthandler.o -lpq -o meta_ind - -lex.yy.c: meta_lex.l sthandler.h - flex meta_lex.l - -lex.yy_ind.c: meta_lex_ind.l sthandler.h - flex -olex.yy_ind.c meta_lex_ind.l - -sthandler.o: sthandler.c sthandler.h - -lex.yy.o: lex.yy.c sthandler.h - $(CC) -c lex.yy.c - -lex.yy_ind.o: lex.yy_ind.c sthandler.h - $(CC) -c lex.yy_ind.c - -clean: - -rm -f *.o - -rm -f lex.yy.c lex.yy_ind.c - -rm -f meta meta_ind