added more code
This commit is contained in:
15
CPE212/Project_03/makefile
Normal file
15
CPE212/Project_03/makefile
Normal file
@ -0,0 +1,15 @@
|
||||
# Project03 makefile
|
||||
|
||||
project03: stack.o main.o
|
||||
g++ stack.o main.o -o project03
|
||||
|
||||
stack.o: stack.h stack.cpp
|
||||
g++ -c stack.cpp
|
||||
|
||||
main.o: stack.h main.cpp
|
||||
g++ -c main.cpp
|
||||
|
||||
clean:
|
||||
rm *.o project03
|
||||
|
||||
|
Reference in New Issue
Block a user