Sign in

gwj / po_oopc · Files

GitLab

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

.cpp:
	g++ -std=c++17 -g -Wall -pedantic $^ -o $@ -lpthread


.PHONY: clean

clean:
	-rm fifo1_bad fifo2 fifo3