Yurttas/PL/OOL/Cplusplus/F/07/06/00/01/make.bubblesort 01

Revision as of 00:13, 7 November 2013 by MassBot1 (talk | contribs) (Created page with "<syntaxhighlight lang="make" line start="1" enclose="div">bubblesort_01 : bubblesort_01.o \ get_vector_item.o \ get_char.o \ bu...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
 1bubblesort_01 : bubblesort_01.o \
 2                get_vector_item.o \
 3                get_char.o \
 4                bubblesort.o \
 5                put_vector_item.o
 6
 7	g++ bubblesort_01.o \
 8            get_vector_item.o \
 9            get_char.o \
10            bubblesort.o \
11            put_vector_item.o \
12         -o bubblesort_01
13
14bubblesort_01.o : bubblesort_01.cpp \
15                  bubblesort.h
16
17	g++ -ansi -c bubblesort_01.cpp
18
19get_vector_item.o : get_vector_item.cpp \
20                    get_put_vector_item.h
21
22	g++ -ansi -c get_vector_item.cpp
23
24get_char.o : get_char.cpp \
25             get_put_vector_item.h
26
27	g++ -ansi -c get_char.cpp
28
29bubblesort.o : bubblesort.cpp
30
31	g++ -ansi -c bubblesort.cpp
32
33put_vector_item.o : put_vector_item.cpp  \
34                    get_put_vector_item.h
35
36	g++ -ansi -c put_vector_item.cpp