You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
533 B
18 lines
533 B
CXXFLAGS = -O2 -std=c++11 -I..
|
|
CXXFLAGS += -Wall -pedantic -Wextra -D_XOPEN_SOURCE=700
|
|
SPP_DEPS_1 = spp.h spp_utils.h spp_dlalloc.h spp_traits.h spp_config.h
|
|
SPP_DEPS = $(addprefix ../sparsepp/,$(SPP_DEPS_1))
|
|
TARGETS = emplace hash_std serialize_file serialize_stream serialize_large
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
LDFLAGS = -lpsapi
|
|
endif
|
|
|
|
all: $(TARGETS)
|
|
|
|
clean:
|
|
rm -f $(TARGETS) ages.dmp data.dat vsprojects/x64/* vsprojects/x86/*
|
|
|
|
%: %.cc $(SPP_DEPS) makefile
|
|
$(CXX) $(CXXFLAGS) -DNDEBUG $< -o $@ $(LDFLAGS)
|
|
|