Index: ossp-pkg/xds/Makefile RCS File: /v/ossp/cvs/ossp-pkg/xds/Attic/Makefile,v rcsdiff -q -kk '-r1.11' '-r1.12' -u '/v/ossp/cvs/ossp-pkg/xds/Attic/Makefile,v' 2>/dev/null --- Makefile 2001/07/08 15:20:34 1.11 +++ Makefile 2001/07/08 15:36:29 1.12 @@ -23,16 +23,13 @@ .cpp.o: $(CXX) $(CPPFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(CXXFLAGS) -c $< -all: libxds.a xds.3 test +all: libxds.a xds.3 libxds.a: $(OBJS) @rm -f $@ $(AR) cr $@ $(OBJS) $(RANLIB) $@ -test: test.o libxds.a - $(CC) $(LDFLAGS) -o $@ test.o -L. -lxds - xds.3: xds.pod pod2man --section=3 --center="XDS Library Programmer API " xds.pod >xds.3 @@ -49,11 +46,12 @@ decode.o: internal.h xds.h destroy.o: internal.h xds.h encode.o: internal.h xds.h +find-engine.o: internal.h xds.h getbuffer.o: internal.h xds.h init.o: internal.h xds.h register.o: internal.h xds.h +set-capacity.o: internal.h xds.h setbuffer.o: internal.h xds.h -test.o: xds.h unregister.o: internal.h xds.h vdecode.o: internal.h xds.h vencode.o: internal.h xds.h Index: ossp-pkg/xds/test.c RCS File: /v/ossp/cvs/ossp-pkg/xds/Attic/test.c,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/xds/Attic/test.c,v' | diff -u - /dev/null -L'ossp-pkg/xds/test.c' 2>/dev/null --- ossp-pkg/xds/test.c +++ /dev/null 2024-05-16 04:11:00.000000000 +0200 @@ -1,23 +0,0 @@ -/* - $Source$ - $Revision$ - - Copyright (c) 2001 by Cable & Wireless Deutschland. - - Permission to use, copy, modify, and distribute this software for - any purpose with or without fee is hereby granted, provided that - the above copyright notice and this permission notice appear in all - copies. - - This software is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - included license for more details. -*/ - -#include "xds.h" - -int main(int argc, char** argv) - { - return 0; - }