Skip to content

Commit 79048af

Browse files
committed
Added Makefile
1 parent c5ef70a commit 79048af

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

Makefile

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
CFLAGS = -O3
2+
3+
all: csvanon
4+
5+
main.o: main.cpp
6+
g++ $(CFLAGS) -c main.cpp
7+
8+
CsvProcessor.o: CsvProcessor.cpp
9+
g++ $(CFLAGS) -c CsvProcessor.cpp
10+
11+
csvanon: main.o CsvProcessor.o
12+
g++ -o csvanon $(CFLAGS) main.o CsvProcessor.o -lcrypto -lboost_program_options
13+
14+
clean:
15+
rm -rf *.o csvanon
16+
17+
18+
19+
20+
21+
22+
23+

0 commit comments

Comments
 (0)