Skip to content

Commit

Permalink
cleaned up Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Daria Sorokina committed Apr 25, 2019
1 parent 304f16f commit 595307b
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions AdditiveGroves/Makefile
Expand Up @@ -4,8 +4,8 @@ SHAREDDIR=../shared
LIBDIR=../ThreadPool
CXXFLAGS = -I$(SHAREDDIR) -I$(LIBDIR)
OBJS = Grove.o $(SHAREDDIR)/SplitInfo.o $(SHAREDDIR)/INDdata.o $(SHAREDDIR)/TreeNode.o ag_functions.o $(SHAREDDIR)/functions.o $(SHAREDDIR)/LogStream.o $(LIBDIR)/thread_pool.o
PGMS = ag_predict ag_train ag_save ag_expand ag_merge ag_fs ag_interactions ag_nway ag_mergepreds ag_savemerge
PGMOBJS = ag_predict.o ag_train.o ag_save.o ag_expand.o ag_merge.o ag_fs.o ag_interactions.o ag_nway.o ag_mergepreds.o ag_savemerge.o
PGMS = ag_predict ag_train ag_save ag_expand ag_merge ag_fs ag_interactions ag_nway
PGMOBJS = ag_predict.o ag_train.o ag_save.o ag_expand.o ag_merge.o ag_fs.o ag_interactions.o ag_nway.o
LIBS = -lpthread


Expand Down Expand Up @@ -65,15 +65,6 @@ ag_nway.o: $(OBJS)
ag_nway: ag_nway.o $(OBJS)
g++ -O3 -o ../Bin/ag_nway ag_nway.o $(OBJS) $(LIBS)

ag_mergepreds.o: $(OBJS)

ag_mergepreds: ag_mergepreds.o $(OBJS)
g++ -O3 -o ../Bin/ag_mergepreds ag_mergepreds.o $(OBJS) $(LIBS)

ag_savemerge.o: $(OBJS)

ag_savemerge: ag_savemerge.o $(OBJS)
g++ -O3 -o ../Bin/ag_savemerge ag_savemerge.o $(OBJS) $(LIBS)



Expand Down

0 comments on commit 595307b

Please sign in to comment.