mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-13 21:47:44 +00:00
14 lines
434 B
Diff
14 lines
434 B
Diff
--- a/Documentation/Utilities/ReferenceDocs/Makefile
|
|
+++ b/Documentation/Utilities/ReferenceDocs/Makefile
|
|
@@ -3,7 +3,10 @@
|
|
LIBS=clanCore
|
|
EXTRA_LIBS=-lpthread
|
|
|
|
-include ../../../Examples/Makefile.conf
|
|
+CXXFLAGS += -pthread -std=c++0x -I.
|
|
+all: $(EXAMPLE_BIN)
|
|
+$(EXAMPLE_BIN): $(OBJF)
|
|
+ $(CXX) $(CXXFLAGS) $(OBJF) -o $(EXAMPLE_BIN) -Wl,-R../../Sources/Core/.libs -L../../../Sources/Core/.libs -lclan23Core $(EXTRA_LIBS)
|
|
|
|
# EOF #
|
|
|