Sign in

gwj / po_oopc · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • po_oopc
  • examples11
  • 06-template_metaprogramming
  • makefile
  • Added template metaprogramming example for vector
    cac6c667
    Grzegorz Jabłoński authored
    2020-01-25 20:20:45 +0100  
    Browse Dir »
makefile 135 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
all: testvector

testvector: testvector.cpp vector.h
	g++ -std=c++17 -g -Wall -pedantic $< -o $@

.PHONY: clean

clean:
	-rm testvector