Index: ossp-pkg/xds/Makefile RCS File: /v/ossp/cvs/ossp-pkg/xds/Attic/Makefile,v co -q -kk -p'1.1' '/v/ossp/cvs/ossp-pkg/xds/Attic/Makefile,v' | diff -u /dev/null - -L'ossp-pkg/xds/Makefile' 2>/dev/null --- ossp-pkg/xds/Makefile +++ - 2024-05-19 07:42:01.729416247 +0200 @@ -0,0 +1,28 @@ +# Build libxds and support/test programs. + +CC = gcc +CXX = g++ + +WARNFLAGS = -Wall -ansi -pedantic +OPTFLAGS = -O3 -pipe + +CPPFLAGS = +CFLAGS = +CXXFLAGS = +LDFLAGS = -s + +.c.o: + $(CC) $(CPPFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(CFLAGS) -c $< + +.cpp.o: + $(CXX) $(CPPFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(CXXFLAGS) -c $< + +test: test.o + $(CXX) $(LDFLAGS) -o $@ test.o + +clean:: + rm -f test.o test + +# Dependencies + +test.o: test.c 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 +++ - 2024-05-19 07:42:01.732126060 +0200 @@ -0,0 +1,23 @@ +/* + $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; + }