Sign in

gwj / po_oopc · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • po_oopc
  • examples05
  • 05-staticmember
  • makefile
  • Cleaned up example05
    73df44ee
    Grzegorz Jabłoński authored
    2019-11-04 10:00:35 +0100  
    Browse Code »
makefile 142 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10
static: static.o
	g++ -g -Wall $^ -o $@

static.o: static.cpp
	g++ -g -c -Wall -pedantic $< -o $@

.PHONY: clean

clean:
	-rm static.o static