Advertisement
Guest User

Untitled

a guest
Sep 14th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.34 KB | None | 0 0
  1. CFLAGS = -Wall -Wextra -W -ggdb3 -O2 -std=c++11
  2. a.out: main.o student.o sort.o
  3.     g++ $(CFLAGS) main.o student.o sort.o
  4. main.o: main.cpp student.h sort.h
  5.     g++ $(CFLAGS) -c main.cpp
  6. sort.o: sort.cpp sort.h
  7.     g++ $(CFLAGS) -c sort.cpp
  8. student.o: student.cpp student.h
  9.     g++ $(CFLAGS) -c student.cpp
  10. clean:
  11.     rm -rf *.out *.o trash.txt tmp.txt
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement