Drew a triangle

This commit is contained in:
Dane Johnson
2021-01-13 10:42:57 -06:00
parent 584a8654a8
commit 41b99aa442
20 changed files with 325 additions and 4 deletions

8
core/Makefile Normal file
View File

@@ -0,0 +1,8 @@
include ../common.mk
SOURCES = $(wildcard *.cpp)
OBJS = $(SOURCES:.cpp=.o)
all: couch
couch: $(OBJS)
$(CXX) $(LIBS) -o $@ $^