1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-05 21:57:51 +03:00
Luke Leighton d500cbb206 messing about.
(This used to be commit 9c6f2d75d848a280f25f2377130953ecd824b7b1)
2000-05-31 05:39:54 +00:00

18 lines
320 B
Makefile

CFLAGS=-Wall -g
CC=gcc
OBJ = vluke.o parser.o util.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]