|
a/src/utils/Makefile |
|
b/src/utils/Makefile |
|
... |
|
... |
78 |
$(CXX) $(ALL_CXXFLAGS) -o trconftree $(CONFTREE_OBJS)
|
78 |
$(CXX) $(ALL_CXXFLAGS) -o trconftree $(CONFTREE_OBJS)
|
79 |
trconftree.o : conftree.cpp
|
79 |
trconftree.o : conftree.cpp
|
80 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_CONFTREE -c -o trconftree.o \
|
80 |
$(CXX) $(ALL_CXXFLAGS) -DTEST_CONFTREE -c -o trconftree.o \
|
81 |
conftree.cpp
|
81 |
conftree.cpp
|
82 |
|
82 |
|
|
|
83 |
X11MON_OBJS= trx11mon.o x11mon.o
|
|
|
84 |
trx11mon : $(X11MON_OBJS)
|
|
|
85 |
$(CXX) $(ALL_CXXFLAGS) -o trx11mon $(X11MON_OBJS) -L/usr/X11R6/lib -lX11
|
|
|
86 |
trx11mon.o : x11mon.cpp x11mon.h
|
|
|
87 |
$(CXX) -o trx11mon.o -c $(ALL_CXXFLAGS) -DTEST_X11MON x11mon.cpp
|
|
|
88 |
x11mon.o: x11mon.cpp
|
|
|
89 |
$(CXX) -c -I/usr/X11R6/include $(ALL_CXXFLAGS) x11mon.cpp
|
83 |
clean:
|
90 |
clean:
|
84 |
rm -f *.o $(PROGS)
|
91 |
rm -f *.o $(PROGS)
|
85 |
|
92 |
|