summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluther <luther@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-23 23:36:18 +0000
committerluther <luther@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-05-23 23:36:18 +0000
commit76f519e418f4396e6404cac59862a7c0e109d9ce (patch)
treed1ff606860619ed4337fc06177ef79c573001162
parent704b7dfd402e47441cf423b08b971f0f0cc1516f (diff)
downloadATCD-76f519e418f4396e6404cac59862a7c0e109d9ce.tar.gz
Tue May 23 18:22:48 2000 Luther J Baker <luther@cs.wustl.edu>
-rw-r--r--PACE/ChangeLog17
-rw-r--r--PACE/docs/README0
-rw-r--r--PACE/examples/README0
-rw-r--r--PACE/pace++/README0
-rw-r--r--PACE/pace/Makefile78
-rw-r--r--PACE/tests/README0
6 files changed, 91 insertions, 4 deletions
diff --git a/PACE/ChangeLog b/PACE/ChangeLog
index 3b96c6313da..e52c5e63b34 100644
--- a/PACE/ChangeLog
+++ b/PACE/ChangeLog
@@ -1,6 +1,18 @@
+Tue May 23 18:22:48 2000 Luther J Baker <luther@cs.wustl.edu>
+
+ * pace/pace/Makefile:
+ Added to repository.
+
+ * 'touch' to force dirs to show up with cvs co -P
+ pace/docs/README
+ pace/examples/README
+ pace/pace/README
+ pace/pace++/README
+ pace/tests/README
+
Tue May 23 17:59:06 2000 Luther J Baker <luther@cs.wustl.edu>
- * docs/todo.txt:
+ * docs/todo.txt:
Currently, all .o files appear in the
ACE_wrappers/pace/pace directory (e.g.: nested
files such as pace/pace/sys/socket.c generate
@@ -8,7 +20,4 @@ Tue May 23 17:59:06 2000 Luther J Baker <luther@cs.wustl.edu>
* ACE_wrappers/pace/pace:
Source files added.
-
-
-
diff --git a/PACE/docs/README b/PACE/docs/README
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/PACE/docs/README
diff --git a/PACE/examples/README b/PACE/examples/README
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/PACE/examples/README
diff --git a/PACE/pace++/README b/PACE/pace++/README
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/PACE/pace++/README
diff --git a/PACE/pace/Makefile b/PACE/pace/Makefile
new file mode 100644
index 00000000000..3b2dbab7d69
--- /dev/null
+++ b/PACE/pace/Makefile
@@ -0,0 +1,78 @@
+# $Id$ -*- Makefile -*-
+
+# ==============================================================================
+#
+# = LIBRARY
+# pace
+#
+# = FILENAME
+# pace/Makefile
+#
+# = AUTHOR
+# Luther Baker
+#
+# ==============================================================================
+
+#
+# don't compile
+# pace/sys/types.h
+#
+
+# ---------------- pace/*.*
+SRC = \
+ aio \
+ dirent \
+ fcntl \
+ grp \
+ mqueue \
+ netdb \
+ pthread \
+ pwd \
+ sched \
+ semaphore \
+ setjmp \
+ signal \
+ stdio \
+ stdlib \
+ string \
+ strings \
+ time \
+ unistd \
+ utime \
+ wait
+
+# ---------------- pace/sys/*.*
+SRC += \
+ sys/mman \
+ sys/socket \
+ sys/stat \
+ sys/termios \
+ sys/times \
+ sys/utsname
+
+# ---------------- pace/netinet/*.*
+SRC += \
+ netinet/in
+
+# ---------------- pace/arpa/*.*
+SRC += \
+ arpa/inet
+
+OBJS = $(addsuffix .o,$(SRC))
+
+CFLAGS += -I$(PACE_ROOT) -g -w
+
+LDFLAGS = -lsocket -lnsl -lrt
+
+CC = cc
+
+all: $(OBJS)
+
+clean:
+ $(RM) -rf *.o *~ *.*~ .*~ \
+ arpa/*.o arpa/*~ arpa/*.*~ arpa/.*~ \
+ netinet/*.o netinet/*~ netinet/*.*~ netinet/.*~ \
+ sys/*.o sys/*~ sys/*.*~ sys/.*~ \
+ config/*.o config/*~ config/*.*~ config/.*~
+
+# end of Makefile
diff --git a/PACE/tests/README b/PACE/tests/README
new file mode 100644
index 00000000000..e69de29bb2d
--- /dev/null
+++ b/PACE/tests/README