mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
26 lines
563 B
Makefile
26 lines
563 B
Makefile
|
# Build rules for the OpenAFS cmd test suite.
|
||
|
|
||
|
srcdir=@srcdir@
|
||
|
abs_top_builddir=@abs_top_builddir@
|
||
|
include @TOP_OBJDIR@/src/config/Makefile.config
|
||
|
include @TOP_OBJDIR@/src/config/Makefile.pthread
|
||
|
|
||
|
MODULE_CFLAGS = -I$(srcdir)/..
|
||
|
|
||
|
LIBS = ../tap/libtap.a \
|
||
|
$(abs_top_builddir)/lib/libcmd.a \
|
||
|
$(abs_top_builddir)/lib/libcom_err.a \
|
||
|
$(abs_top_builddir)/lib/util.a
|
||
|
|
||
|
tests = command-t
|
||
|
|
||
|
all check test tests: $(tests)
|
||
|
|
||
|
command-t: command-t.o $(LIBS)
|
||
|
$(AFS_LDRULE) command-t.o $(LIBS) $(XLIBS)
|
||
|
|
||
|
install:
|
||
|
|
||
|
clean distclean:
|
||
|
$(RM) -f $(tests) *.o core
|