diff options
Diffstat (limited to 'source3/aparser/Makefile')
-rw-r--r-- | source3/aparser/Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/aparser/Makefile b/source3/aparser/Makefile index d088071090..e74e99de18 100644 --- a/source3/aparser/Makefile +++ b/source3/aparser/Makefile @@ -4,17 +4,17 @@ CC=gcc %.h : %.struct igawk -f parser.awk < $*.struct > $*.h -OBJ = harness.o parser.o +OBJ = vluke.o parser.o -all: test.h harness +all: test.h vluke test.h : test.struct -harness: test.h $(OBJ) - $(CC) $(CFLAGS) -o harness $(OBJ) +vluke: test.h $(OBJ) + $(CC) $(CFLAGS) -o vluke $(OBJ) clean: rm -f *.o test.h -test: harness - ./harness test.dat > test.out +test: vluke + ./vluke test.dat > test.out |