diff options
Diffstat (limited to 'cpp/test/IceUtil/priority')
-rw-r--r-- | cpp/test/IceUtil/priority/.gitignore | 6 | ||||
-rw-r--r-- | cpp/test/IceUtil/priority/Makefile | 29 | ||||
-rw-r--r-- | cpp/test/IceUtil/priority/Makefile.mk | 12 |
3 files changed, 12 insertions, 35 deletions
diff --git a/cpp/test/IceUtil/priority/.gitignore b/cpp/test/IceUtil/priority/.gitignore deleted file mode 100644 index f715a76859d..00000000000 --- a/cpp/test/IceUtil/priority/.gitignore +++ /dev/null @@ -1,6 +0,0 @@ -// Generated by makegitignore.py - -// IMPORTANT: Do not edit this file -- any edits made here will be lost! -.depend -client -.depend diff --git a/cpp/test/IceUtil/priority/Makefile b/cpp/test/IceUtil/priority/Makefile deleted file mode 100644 index 607503a9419..00000000000 --- a/cpp/test/IceUtil/priority/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -# ********************************************************************** -# -# Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved. -# -# This copy of Ice is licensed to you under the terms described in the -# ICE_LICENSE file included in this distribution. -# -# ********************************************************************** - -top_srcdir = ../../.. - -CLIENT = $(call mktestname,client) - -TARGETS = $(CLIENT) - -OBJS = TestBase.o \ - ThreadPriority.o \ - TimerPriority.o \ - PriorityInversion.o \ - TestSuite.o \ - Client.o - -include $(top_srcdir)/config/Make.rules - -CPPFLAGS := -I. -I../../include $(CPPFLAGS) - -$(CLIENT): $(OBJS) - rm -f $@ - $(call mktest,$@,$(OBJS),$(BASELIBS)) diff --git a/cpp/test/IceUtil/priority/Makefile.mk b/cpp/test/IceUtil/priority/Makefile.mk new file mode 100644 index 00000000000..904c9e358d1 --- /dev/null +++ b/cpp/test/IceUtil/priority/Makefile.mk @@ -0,0 +1,12 @@ +# ********************************************************************** +# +# Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. +# +# This copy of Ice is licensed to you under the terms described in the +# ICE_LICENSE file included in this distribution. +# +# ********************************************************************** + +$(test)_client_sources := $(notdir $(wildcard $(currentdir)/*.cpp)) + +tests += $(test) |