Initial commit

This commit is contained in:
ave 2020-12-05 00:02:42 +03:00
commit 450bc86905
7 changed files with 8626 additions and 0 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
CC = g++
CFLAGS = -O3 -Wall
LIBS = -lrlottie
DEPS = lodepng.cpp
TARGET = lfe
all: $(TARGET)
$(TARGET): $(TARGET).cpp
$(CC) $(CFLAGS) $(LIBS) -o $(TARGET) $(DEPS) $(TARGET).cpp
clean:
$(RM) $(TARGET)