-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
33 lines (21 loc) · 1015 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
OPT = -O2 -pedantic -Wall -Werror -g
OBJS = cl_base.o cl_termstorage.o cl_brute.o cl_ga_tools.o cl_resultator.o sp_parmap.o
all: cl_ga cl_interactive cl_print cl_bruteforce cl_multbruteforce cl_bf_printgood
.cpp.o:
c++ -c $(OPT) $*.cpp -o $*.o
cl_ga:cl_ga.cpp $(OBJS)
c++ $(OPT) cl_ga.cpp -o cl_ga $(OBJS)
cl_interactive:cl_interactive.cpp $(OBJS)
c++ $(OPT) cl_interactive.cpp -o cl_interactive $(OBJS)
cl_print:cl_print.cpp $(OBJS)
c++ $(OPT) cl_print.cpp -o cl_print $(OBJS)
cl_bruteforce:cl_bruteforce.cpp $(OBJS)
c++ $(OPT) cl_bruteforce.cpp -o cl_bruteforce $(OBJS)
cl_bf_printgood:cl_bf_printgood.cpp $(OBJS)
c++ $(OPT) cl_bf_printgood.cpp -o cl_bf_printgood $(OBJS)
cl_multbruteforce:cl_multbruteforce.cpp $(OBJS)
c++ $(OPT) cl_multbruteforce.cpp -o cl_multbruteforce $(OBJS)
cl_randomtest:cl_randomtest.cpp $(OBJS)
c++ $(OPT) cl_randomtest.cpp -o cl_randomtest $(OBJS)
clean:
rm -f *.o cl_ga cl_interactive cl_print cl_bruteforce cl_multbruteforce cl_randomtest cl_bf_printgood