Skip to content

Commit

Permalink
Update Makefile
Browse files Browse the repository at this point in the history
Had to remove .WAIT from the makefile. It looks like this option is not recognized by existing make. The PR #590 might still be relevant. I will discuss this with @isinaltinkaya
  • Loading branch information
ANGSD committed Aug 20, 2023
1 parent e3ac916 commit 8a58e17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -105,7 +105,7 @@ version.h:

.PHONY: all clean install install-all install-misc misc test

misc: analysisFunction.o bfgs.o prep_sites.o aio.o chisquare.o .WAIT
misc: analysisFunction.o bfgs.o prep_sites.o aio.o chisquare.o
$(MAKE) -C misc HTSSRC="$(realpath $(HTSSRC))"

-include $(OBJ:.o=.d)
Expand All @@ -119,7 +119,7 @@ misc: analysisFunction.o bfgs.o prep_sites.o aio.o chisquare.o .WAIT
$(CXX) -MM $(CXXFLAGS) $*.cpp >$*.d


angsd: version.h .WAIT $(OBJ)
angsd: version.h $(OBJ)
$(CXX) $(FLAGS) -o angsd *.o $(LIBS)


Expand Down

0 comments on commit 8a58e17

Please sign in to comment.