diff options
author | jxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-20 22:26:17 +0000 |
---|---|---|
committer | jxh <jxh@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-03-20 22:26:17 +0000 |
commit | cb1b6c60bbb2a2ce52ed3e433f880186b1cbfd39 (patch) | |
tree | 4b61b77cbb3c74aa0b59ef2d0705fa6d23a40ff5 /apps | |
parent | 4c825b7f84437cdeb7ec74e3903d9ef8ccf31418 (diff) | |
download | ATCD-cb1b6c60bbb2a2ce52ed3e433f880186b1cbfd39.tar.gz |
Fixed it so that the programs actually link. Thanks to Craig Rodrigues
(rodrigc@mediaone.net) for the heads up.
Diffstat (limited to 'apps')
-rw-r--r-- | apps/JAWS/stress_testing/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/JAWS/stress_testing/Makefile b/apps/JAWS/stress_testing/Makefile index 7894978a63d..7f2a20aebba 100644 --- a/apps/JAWS/stress_testing/Makefile +++ b/apps/JAWS/stress_testing/Makefile @@ -1,5 +1,5 @@ #---------------------------------------------------------------------------- -# %W% %G% +# $Id$ # # Makefile for the ACE Adapter Web Server (JAWS) client #---------------------------------------------------------------------------- @@ -16,8 +16,8 @@ FILES = \ stats \ cp -LSRC = $(addsuffix .cpp,$(FILES)) -LOBJ = $(addsuffix .o,$(FILES)) +SRC = $(addsuffix .cpp,$(FILES)) +OBJ = $(addsuffix .o,$(FILES)) SHOBJ = $(addsuffix .so,$(FILES)) INCLDIRS += -I../.. |