Sign in

gwj / po_oopc · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • po_oopc
  • examples05
  • 02-txtwin
  • makefile
  • Reordered lectures
    fb627de5
    Grzegorz Jabłoński authored
    2022-09-19 12:52:58 +0200  
    Browse Code »
makefile 277 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
all: winsys

winsys: winsys.o screen.o
	g++ -g -Wall -pedantic $^ -o $@ -lncurses

winsys.o: winsys.cpp screen.h cpoint.h
	g++ -g -c -Wall -pedantic $< -o $@

screen.o: screen.cpp screen.h
	g++ -g -c -Wall -pedantic $< -o $@

.PHONY: clean

clean:
	-rm winsys winsys.o screen.o