blob: dbe159a7a7b01cca306635e848950684f84c3e46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# -*- make -*-
BASE=..
SUBDIR=methods
# Bring in the default rules
include ../buildlib/defaults.mak
BIN := $(BIN)/methods
# The file method
PROGRAM=file
SLIBS = -lapt-pkg
SOURCE = file.cc
include $(PROGRAM_H)
|