1 cdf0e10cSrcweir# Testbuild 2 b31e36b3SAndrew Rist# ************************************************************* 3 b31e36b3SAndrew Rist# 4 b31e36b3SAndrew Rist# Licensed to the Apache Software Foundation (ASF) under one 5 b31e36b3SAndrew Rist# or more contributor license agreements. See the NOTICE file 6 b31e36b3SAndrew Rist# distributed with this work for additional information 7 b31e36b3SAndrew Rist# regarding copyright ownership. The ASF licenses this file 8 b31e36b3SAndrew Rist# to you under the Apache License, Version 2.0 (the 9 b31e36b3SAndrew Rist# "License"); you may not use this file except in compliance 10 b31e36b3SAndrew Rist# with the License. You may obtain a copy of the License at 11 b31e36b3SAndrew Rist# 12 b31e36b3SAndrew Rist# http://www.apache.org/licenses/LICENSE-2.0 13 b31e36b3SAndrew Rist# 14 b31e36b3SAndrew Rist# Unless required by applicable law or agreed to in writing, 15 b31e36b3SAndrew Rist# software distributed under the License is distributed on an 16 b31e36b3SAndrew Rist# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 b31e36b3SAndrew Rist# KIND, either express or implied. See the License for the 18 b31e36b3SAndrew Rist# specific language governing permissions and limitations 19 b31e36b3SAndrew Rist# under the License. 20 b31e36b3SAndrew Rist# 21 b31e36b3SAndrew Rist# ************************************************************* 22 b31e36b3SAndrew Rist# ************************************************************* 23 b31e36b3SAndrew Rist# 24 b31e36b3SAndrew Rist# Licensed to the Apache Software Foundation (ASF) under one 25 b31e36b3SAndrew Rist# or more contributor license agreements. See the NOTICE file 26 b31e36b3SAndrew Rist# distributed with this work for additional information 27 b31e36b3SAndrew Rist# regarding copyright ownership. The ASF licenses this file 28 b31e36b3SAndrew Rist# to you under the Apache License, Version 2.0 (the 29 b31e36b3SAndrew Rist# "License"); you may not use this file except in compliance 30 b31e36b3SAndrew Rist# with the License. You may obtain a copy of the License at 31 b31e36b3SAndrew Rist# 32 b31e36b3SAndrew Rist# http://www.apache.org/licenses/LICENSE-2.0 33 b31e36b3SAndrew Rist# 34 b31e36b3SAndrew Rist# Unless required by applicable law or agreed to in writing, 35 b31e36b3SAndrew Rist# software distributed under the License is distributed on an 36 b31e36b3SAndrew Rist# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 37 b31e36b3SAndrew Rist# KIND, either express or implied. See the License for the 38 b31e36b3SAndrew Rist# specific language governing permissions and limitations 39 b31e36b3SAndrew Rist# under the License. 40 b31e36b3SAndrew Rist# 41 b31e36b3SAndrew Rist# ************************************************************* 42 b31e36b3SAndrew Rist# ************************************************************* 43 b31e36b3SAndrew Rist# 44 b31e36b3SAndrew Rist# Licensed to the Apache Software Foundation (ASF) under one 45 b31e36b3SAndrew Rist# or more contributor license agreements. See the NOTICE file 46 b31e36b3SAndrew Rist# distributed with this work for additional information 47 b31e36b3SAndrew Rist# regarding copyright ownership. The ASF licenses this file 48 b31e36b3SAndrew Rist# to you under the Apache License, Version 2.0 (the 49 b31e36b3SAndrew Rist# "License"); you may not use this file except in compliance 50 b31e36b3SAndrew Rist# with the License. You may obtain a copy of the License at 51 b31e36b3SAndrew Rist# 52 b31e36b3SAndrew Rist# http://www.apache.org/licenses/LICENSE-2.0 53 b31e36b3SAndrew Rist# 54 b31e36b3SAndrew Rist# Unless required by applicable law or agreed to in writing, 55 b31e36b3SAndrew Rist# software distributed under the License is distributed on an 56 b31e36b3SAndrew Rist# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 57 b31e36b3SAndrew Rist# KIND, either express or implied. See the License for the 58 b31e36b3SAndrew Rist# specific language governing permissions and limitations 59 b31e36b3SAndrew Rist# under the License. 60 b31e36b3SAndrew Rist# 61 b31e36b3SAndrew Rist# ************************************************************* 62 cdf0e10cSrcweir 63 cdf0e10cSrcweir#test : bezierclip.cxx convexhull.cxx 64 cdf0e10cSrcweir# g++ -Wall -g \ 65 cdf0e10cSrcweir# -I. -I. -I../inc -I./inc -I./unx/inc -I./unxlngi4/inc -I. -I/develop4/update/SRX644/unxlngi4/inc.m4/stl -I/develop4/update/SRX644/unxlngi4/inc.m4/external -I/develop4/update/SRX644/unxlngi4/inc.m4 -I/develop4/update/SRX644/src.m4/solenv/unxlngi4/inc -I/net/grande/develop6/update/dev/gcc_3.0.1_linux_libc2.11_turbolinux/include -I/develop4/update/SRX644/src.m4/solenv/inc -I/develop4/update/SRX644/unxlngi4/inc.m4/stl -I/net/grande.germany/develop6/update/dev/gcc_3.0.1_linux_libc2.11_turbolinux/redhat60/usr/include -I/net/grande.germany/develop6/update/dev/gcc_3.0.1_linux_libc2.11_turbolinux/redhat60/usr/include/X11 -I/develop4/update/SRX644/src.m4/res -I/net/grande/develop6/update/dev/Linux_JDK_1.4.0/include -I/net/grande/develop6/update/dev/Linux_JDK_1.4.0/include/linux -I. -I./res -I. \ 66 *b597708bSHerbert Dürr# -include preinclude.h -D_USE_NAMESPACE -DGLIBC=2 -D_USE_NAMESPACE=1 -D_STLP_DEBUG \ 67 cdf0e10cSrcweir# bezierclip.cxx convexhull.cxx -o bezierclip 68 cdf0e10cSrcweir 69 cdf0e10cSrcweirprog : bezierclip.cxx convexhull.cxx 70 cdf0e10cSrcweir g++ -Wall -g bezierclip.cxx convexhull.cxx -o bezierclip 71 cdf0e10cSrcweir 72 cdf0e10cSrcweirtest : testconvexhull.cxx 73 cdf0e10cSrcweir g++ -Wall -g testconvexhull.cxx -o testhull 74 cdf0e10cSrcweir 75 cdf0e10cSrcweir.cxx.o: 76 cdf0e10cSrcweir g++ -c $(LOCALDEFINES) $(CCFLAGS) $< 77