blob: bf1b1834c311f0b00a3dbfe47302ebd8f557341f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -*- make -*-
BASE=..
SUBDIR=test
# Bring in the default rules
include ../buildlib/defaults.mak
# Program for testing methods
PROGRAM=mthdcat
SLIBS =
SOURCE = mthdcat.cc
include $(PROGRAM_H)
# Scratch program to test incomplete code fragments in
PROGRAM=scratch-test
SLIBS = -lapt-pkg
SOURCE = scratch.cc
include $(PROGRAM_H)
|