From 26460138dab6213f4d9643f79cea1daba3a589e3 Mon Sep 17 00:00:00 2001 From: DurgeshSamant <durgeshsamant1987@gmail.com> Date: Mon, 23 Oct 2017 01:52:01 +0530 Subject: [PATCH] minor cleanup --- example/sarsa_libraries/funcapprox/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/sarsa_libraries/funcapprox/Makefile b/example/sarsa_libraries/funcapprox/Makefile index 70459c6..654d49a 100644 --- a/example/sarsa_libraries/funcapprox/Makefile +++ b/example/sarsa_libraries/funcapprox/Makefile @@ -21,7 +21,7 @@ all: $(TARGET) $(CXX) $(CXXFLAGS) -c -o $@ $(@F:%.o=%.cpp) $(TARGET): $(OBJS) - ar cq $@ $(OBJS); #g++ -shared -o libFA.so libfuncapprox.a ; + ar cq $@ $(OBJS); clean: rm -f $(TARGET) $(OBJS) *~; -- 2.24.1