-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
39 lines (26 loc) · 856 Bytes
/
Makefile
File metadata and controls
39 lines (26 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Makefile -*- mode: Fundamental;-*-
# $Header: /space/home/eng/cjm/cvs/dprt/test/Makefile,v 1.1 2001-08-10 13:06:54 cjm Exp $
include ../../Makefile.common
include ../Makefile.common
BINDIR = $(DPRT_BIN_HOME)/test
DOCSDIR = $(DPRT_DOC_HOME)/test_javadocs
DOCFLAGS = -version -author -private
SRCS = DpRtTestTCPClientConnectionThread.java SendDpRtCommand.java
OBJS = $(SRCS:%.java=$(BINDIR)/%.class)
DOCS = $(SRCS:%.java=$(DOCSDIR)/%.html)
top: $(OBJS) docs
$(BINDIR)/%.class:%.java
$(JAVAC) $(JAVAC_OPTIONS) -d $(BINDIR) $<
docs: $(DOCS)
$(DOCS): $(SRCS)
$(JAVADOC) -d $(DOCSDIR) $(DOCFLAGS) $(SRCS)
checkout:
$(CO) $(CO_OPTIONS) $(SRCS)
checkin:
-$(CI) $(CI_OPTIONS) $(SRCS)
clean: tidy
-$(RM) $(RM_OPTIONS) $(OBJS) $(BINDIR)/*.obj
tidy:
-$(RM) $(RM_OPTIONS) $(TIDY_OPTIONS)
backup: tidy
# $Log: not supported by cvs2svn $