1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00
samba-mirror/source/aparser/Makefile
Andrew Tridgell ca8f1e92ad added the ".trailer" type, to mark where a packet turns into a trailer
this now gives us enough to parse complete function calls, including
the return values
0001-01-01 00:00:00 +00:00

18 lines
313 B
Makefile

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]