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.
|
CFLAGS = -O |
|
OBJS = main.o esc.o |
|
|
|
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
|
|
|