Sign in

gwj / po_oopc · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • po_oopc
  • examples06
  • 01-operator
  • makefile
  • Updated Koenig lookup example
    307a647f
    Grzegorz Jabłoński authored
    2020-11-27 09:05:58 +0100  
    Browse Code »
makefile 184 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12
all: operator koenig.o

operator: operator.cpp
	g++ -g -Wall -pedantic $^ -o $@

koenig.o: koenig.cpp
	g++ -c -g -Wall -pedantic $^ -o $@

.PHONY: clean

clean:
	-rm operator koenig.o