Makefile

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
CC= g++ 
CCFLAGS= -std=c++11

SOURCES= example1_basic_usage.cpp \
		 example2_custom_comparator_descending_order.cpp \
		 example3_frequency_count_and_element_removal.cpp \
		 example4_range_operations_and_bounds.cpp
OBJECTS= $(SOURCES:.cpp=.o)
EXEC= $(SOURCES:.cpp=.x)
all: $(EXEC)

%.x: %.cpp
	$(CC) $(CCFLAGS) -o $@ $<

clean:
	rm -rf *.o *.x
Back to std_multiset