You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
270 B
16 lines
270 B
15 years ago
|
CFLAGS = -O
|
||
|
OBJS = main.o esc.o
|
||
|
|
||
|
all: vttest quote
|
||
|
|
||
|
vttest: $(OBJS)
|
||
|
cc $(CFLAGS) -o vttest $(OBJS)
|
||
|
|
||
|
install: vttest
|
||
|
cp vttest.1 /usr/man/man1/vttest.1
|
||
|
cp vttest /usr/local/bin/vttest
|
||
|
strip /usr/local/bin/vttest
|
||
|
|
||
|
clean:
|
||
|
rm -f $(OBJS) vttest foo core lint tags a.out
|