Sign in

gwj / po_oopc · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • po_oopc
  • examples09
  • 03-list
  • makefile
  • Added example of list with iterator
    702f90c7
    Grzegorz Jabłoński authored
    2022-01-05 11:03:51 +0100  
    Browse File »
makefile 101 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8
all: list

list: list.cpp
	g++ -std=c++2a -g -Wall -pedantic $^ -o $@
.PHONY: clean

clean:
	-rm list