Sign in

gwj / po_oopc · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • po_oopc
  • examples09
  • 07-fifo
  • makefile
  • Added FIFO example
    ebd8d90f
    Grzegorz Jabłoński authored
    2019-12-12 16:11:22 +0100  
    Browse Code »
makefile 113 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10
all: fifo

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


.PHONY: clean

clean:
	-rm fifo