Files
fusion/test/compile_time/Makefile
T

29 lines
709 B
Makefile
Raw Normal View History

2008-10-20 21:36:04 +00:00
#=============================================================================
# Copyright (c) 2008 Dan Marsden
#
# Use modification and distribution are subject to the Boost Software
# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt).
#==============================================================================
CXX=g++
CXXFLAGS=-I$(BOOST_ROOT)
TEST_SRCS=\
vector_construction.cpp\
vector_iteration.cpp\
vector_intrinsic.cpp\
fold.cpp
2008-10-20 21:36:04 +00:00
TEST_OBJS=$(TEST_SRCS:.cpp=.o)
2008-10-20 21:36:04 +00:00
TEST_TARGETS=$(TEST_SRCS:.cpp=.test)
2008-10-20 21:36:04 +00:00
all: $(TEST_TARGETS)
%.test : %.cpp
time $(CXX) $(CXXFLAGS) $< -o $@
2008-10-20 21:36:04 +00:00
clean:
rm -f $(TEST_TARGETS) $(TEST_OBJS)