blob: 851a294a33505e380c549b290aae52338be262ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# dummy Makefile
#
PROGRAM = exportfs
OBJS = exportfs.o
LIBDEPS = $(TOP)support/lib/libexport.a $(TOP)/support/lib/libnfs.a
LIBS = -lexport -lnfs
MAN8 = exportfs
MAN5 = exports
include $(TOP)rules.mk
|