12 lines
170 B
Makefile
12 lines
170 B
Makefile
|
# Makefile for quintmat
|
||
|
|
||
|
TOP=../../..
|
||
|
.include "$(TOP)/mk/os161.config.mk"
|
||
|
|
||
|
PROG=quintmat
|
||
|
SRCS=quintmat.c
|
||
|
LIBS=-ltest
|
||
|
BINDIR=/testbin
|
||
|
|
||
|
.include "$(TOP)/mk/os161.prog.mk"
|