Skip to content
Snippets Groups Projects
Makefile 240 B
Newer Older
  • Learn to ignore specific revisions
  • david's avatar
    david committed
    CC= gcc
    
    CXXFLAGS= -Wall -ansi --pedantic -O3
    
    david's avatar
    david committed
    
    CPP_O_FILE = arraylist.o analyzer.o main.o
    LIB = -lm
    
    
    all: $(CPP_O_FILE)
    	$(CC) $(CXXFLAGS) -o arraylist_analysis $(CPP_O_FILE) $(LIB)
    
    clean:
    	rm -rf *.o
    	rm -rf *~
    	rm -rf arraylist_analysis