]> Dogcows Code - chaz/yoink/blob - src/stlplus/rules.mk
b15fa5201bbadc71c0a60bde340cb6fde50afe2c
[chaz/yoink] / src / stlplus / rules.mk
1
2 #
3 # Define rules and targets for libstlplus.
4 #
5
6 objects = $(patsubst %.cpp,$(builddir)/%.o,$(shell find $d -name "*.cpp"))
7 $(objects): TGT_CFLAGS := -I$d -I$d/containers -I$d/portability
8 $(objects): config.mk $(this) | $b/containers $b/portability
9
10 library = $b/libstlplus.a
11 $(library): $(objects)
12 $(Q)$(ar)
13
14 exec += $(objects) $(library)
15
This page took 0.027994 seconds and 3 git commands to generate.