Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $(CXX)=g++
  2. $(SRC)=../src
  3. $(INCL)=../include
  4. all: cpu ram temperature swap statusshooter
  5. $(CXX) main.cpp cpu.o ram.o temperature.o swap.o statusshooter.o -o main.o -I$(INCL) -Ofast -Wall -lyaml-cpp -lglog -lpqxx -lpq
  6. cpu:
  7. $(CXX) -c $(SRC)/CCpu.cpp -o cpu.o -Ofast -Wall
  8. ram:
  9. $(CXX) -c $(SRC)/CRam.cpp -o ram.o -Ofast -Wall
  10. temperature:
  11. $(CXX) -c $(SRC)/CTemperature.cpp -o temperature.o -Ofast -Wall
  12. swap:
  13. $(CXX) -c $(SRC)/CSwap.cpp -o swap.o -Ofast -Wall
  14. statusshooter:
  15. $(CXX) -c $(SRC)/CStatusShooter.cpp -o statusshooter.o -Ofast -Wall
  16.  
  17. makefile:2: *** empty variable name. Stop.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement