diff options
Diffstat (limited to 'source3/aparser/Makefile')
-rw-r--r-- | source3/aparser/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/source3/aparser/Makefile b/source3/aparser/Makefile new file mode 100644 index 0000000000..953743b234 --- /dev/null +++ b/source3/aparser/Makefile @@ -0,0 +1,17 @@ +CFLAGS=-Wall -g +CC=gcc + +OBJ = vluke.o parser.o +AWKPROGS=dump.awk harness.awk header.awk parsefn.awk main.awk parsetree.awk template.awk util.awk + +all: test.h vluke + +test.h : $(AWKPROGS) + igawk -f main.awk srvsvc.struct + +vluke: test.h $(OBJ) + $(CC) $(CFLAGS) -o vluke $(OBJ) + +clean: + rm -f *.o test.h prs_*.[ch] + |