diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-12 14:35:15 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-12 14:35:15 +0000 |
commit | feb3afbb91bd9a51256e1eb1d70c12b5278b481e (patch) | |
tree | 7f8bd2fe090cdf18c15c6f20bb56978b733922d9 /source3/aparser/Makefile | |
parent | 059956376897b3fee0d019b8f5e27ac3b84acb5d (diff) | |
download | samba-feb3afbb91bd9a51256e1eb1d70c12b5278b481e.tar.gz samba-feb3afbb91bd9a51256e1eb1d70c12b5278b481e.tar.bz2 samba-feb3afbb91bd9a51256e1eb1d70c12b5278b481e.zip |
renamed the harness program to vluke (for "virtual luke")
added a couple of sample .prs files
(This used to be commit 70f68209dae0fb94196a30e7404a9ed5bdc2286c)
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 |