summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-11-30 19:28:45 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-11-30 19:28:45 +0000
commit3ff51076f54b57eb3632bea1ac54a39c503bf340 (patch)
tree9a69c3608416108d36e9bd89ec0aaf9c2a0b5727
parentf8849a907dd7994a8e1b913b6bb54b0408ee3c13 (diff)
downloadATCD-3ff51076f54b57eb3632bea1ac54a39c503bf340.tar.gz
Changed the order of files in the SRC macro so the IDL-generated
files will compile first.
-rw-r--r--TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile b/TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile
index a84676d520f..9ab86564c23 100644
--- a/TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile
+++ b/TAO/performance-tests/RTCorba/Oneways/Reliable/Makefile
@@ -17,7 +17,7 @@ LDLIBS = -lTAO
IDLFILES = testC testS
BIN = server client
-SRC = $(addsuffix .cpp, $(BIN) $(IDLFILES) test_i)
+SRC = $(addsuffix .cpp, $(IDLFILES) test_i $(BIN))
CLIENT_OBJS = client.o testC.o
SERVER_OBJS = server.o test_i.o $(addsuffix .o, $(IDLFILES))