Added all remaining gists.

This commit is contained in:
Miguel Astor
2023-06-21 21:40:51 -04:00
parent 22ff5bfa25
commit b0ca706a25
26 changed files with 892 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
TARGET =
OBJECTS =
HEADERS =
CXX = g++
CXXFLAGS = -Wall -ansi -pedantic -g
LDLIBS = -lm -lglut -lGLU -lGL # GNU/Linux libs
# LDLIBS = -lm -framework OpenGL -framework GLUT # Os X libs
.PHONY: all
all: $(TARGET)
$(TARGET): $(OBJECTS)
$(CXX) $(CXXFLAGS) -o $@ $^ $(LDLIBS)
.PHONY: clean
clean:
$(RM) $(TARGET) $(OBJECTS)