summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%netscape.com <devnull@localhost>1998-12-09 04:38:31 +0000
committerwtc%netscape.com <devnull@localhost>1998-12-09 04:38:31 +0000
commit5081f001f30fb7c049348fdc5e7886ec0cee879c (patch)
tree214df0efed4ec11635b8dd4253ecf199f48a5ca6
downloadnspr-hg-5081f001f30fb7c049348fdc5e7886ec0cee879c.tar.gz
Initial checkin of NSPR C++ wrapper classes (pr/src/cplus).
-rw-r--r--pr/src/cplus/Makefile49
1 files changed, 49 insertions, 0 deletions
diff --git a/pr/src/cplus/Makefile b/pr/src/cplus/Makefile
new file mode 100644
index 00000000..e82f764d
--- /dev/null
+++ b/pr/src/cplus/Makefile
@@ -0,0 +1,49 @@
+#
+# The contents of this file are subject to the Netscape Public License
+# Version 1.0 (the "NPL"); you may not use this file except in
+# compliance with the NPL. You may obtain a copy of the NPL at
+# http://www.mozilla.org/NPL/
+#
+# Software distributed under the NPL is distributed on an "AS IS" basis,
+# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
+# for the specific language governing rights and limitations under the
+# NPL.
+#
+# The Initial Developer of this code under the NPL is Netscape
+# Communications Corporation. Portions created by Netscape are
+# Copyright (C) 1998 Netscape Communications Corporation. All Rights
+# Reserved.
+#
+
+#! gmake
+
+MOD_DEPTH = ../../..
+
+include $(MOD_DEPTH)/config/config.mk
+
+CXXSRCS = \
+ rcbase.cpp \
+ rccv.cpp \
+ rcfileio.cpp \
+ rcinrval.cpp \
+ rcio.cpp \
+ rclock.cpp \
+ rcnetdb.cpp \
+ rcnetio.cpp \
+ rcthread.cpp \
+ rctime.cpp \
+ $(NULL)
+
+OBJS = $(addprefix $(OBJDIR)/,$(CXXSRCS:.cpp=.$(OBJ_SUFFIX)))
+
+TARGETS = $(OBJS)
+
+INCLUDES = -I$(DIST)/include/private -I$(DIST)/include
+
+include $(MOD_DEPTH)/config/rules.mk
+
+HEADERS = *.h
+
+export:: $(TARGETS)
+
+install:: export