Initial commit
This commit is contained in:
commit
450bc86905
7 changed files with 8626 additions and 0 deletions
13
Makefile
Normal file
13
Makefile
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue