Skip to content
Snippets Groups Projects
Makefile 1.64 KiB
Newer Older
  • Learn to ignore specific revisions
  • Martin Rusek's avatar
    Martin Rusek committed
    CF = -std=c++14 -pedantic -Wall
    
    Martin Rusek's avatar
    Martin Rusek committed
    ants: ../SCwin/main.cpp external.h templates.h structs.h cstruct.h
    
    ants: entry.cpp entry.h
    
    Martin Rusek's avatar
    Martin Rusek committed
    ants: parameter.cpp parameter.h
    ants: calcul.cpp calcul.h
    ants: parser.cpp parser.h
    ants: dtw.cpp dtw.h
    ants: lcss.cpp lcss.h
    ants: help.cpp help.h
    ants: operation.cpp operation.h
    ants: pdtw.cpp pdtw.h
    ants: print.cpp print.h
    ants: draw.cpp draw.h
    ants: veTree.cpp veTree.h
    ants: veSegment.cpp veSegment.h
    ants: preprocess.cpp preprocess.h
    	g++ $(CF) -O3 -fopenmp \
    	../SCwin/main.cpp \
    
    Martin Rusek's avatar
    Martin Rusek committed
    	parameter.cpp calcul.cpp parser.cpp dtw.cpp lcss.cpp help.cpp operation.cpp pdtw.cpp print.cpp draw.cpp veTree.cpp veSegment.cpp preprocess.cpp -lstdc++fs -lX11 -o ants
    
    #
    
    Martin Rusek's avatar
    Martin Rusek committed
    # -qoverride-limits
    
    my: main.cpp templates.h structs.h entry.cpp entry.h parameter.cpp parameter.h calcul.cpp calcul.h parser.cpp parser.h dtw.cpp dtw.h lcss.cpp lcss.h help.cpp help.h operation.cpp operation.h pdtw.cpp pdtw.h print.cpp print.h draw.cpp draw.h entrypoint.h veTree.cpp veTree.h veSegment.cpp veSegment.h preprocess.cpp preprocess.h
    	g++ $(CF) -O3 -fopenmp main.cpp entry.cpp parameter.cpp calcul.cpp parser.cpp dtw.cpp lcss.cpp help.cpp operation.cpp pdtw.cpp print.cpp draw.cpp veTree.cpp veSegment.cpp preprocess.cpp -lstdc++fs -lX11 -o msa
    
    myg: main.cpp templates.h headerStruct.h entry.cpp entry.h parameter.cpp parameter.h calcul.cpp calcul.h parser.cpp parser.h dtw.cpp dtw.h lcss.cpp lcss.h help.cpp help.h operation.cpp operation.h pdtw.cpp pdtw.h print.cpp print.h draw.h entrypoint.h
    	g++ $(CF) -O3 -fopenmp main.cpp entry.cpp parameter.cpp calcul.cpp parser.cpp dtw.cpp lcss.cpp help.cpp operation.cpp pdtw.cpp print.cpp -lstdc++fs -lX11 -o msa