Mercurial > repos > yufei-luo > s_mart
comparison SMART/Java/Python/Cpp/Makefile @ 18:94ab73e8a190
Uploaded
author | m-zytnicki |
---|---|
date | Mon, 29 Apr 2013 03:20:15 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
17:b0e8584489e6 | 18:94ab73e8a190 |
---|---|
1 #------------------------------------------------------------------------------ | |
2 OBJS=inputFileParser.o ncListCreator.o findOverlaps.o | |
3 PROGRAM=findOverlaps | |
4 CC=g++ | |
5 CFLAGS = -Wall -g | |
6 #------------------------------------------------------------------------------ | |
7 | |
8 | |
9 all: $(PROGRAM) | |
10 | |
11 $(PROGRAM): $(OBJS) | |
12 $(CC) $(OBJS) -o $(PROGRAM) | |
13 | |
14 %.o: %.cpp | |
15 $(CC) $(CFLAGS) -c $< | |
16 | |
17 clean: | |
18 rm -rf $(OBJS) $(PROGRAM) |