Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
kiabuzz authored Dec 26, 2023
1 parent 60722d9 commit a2d18a1
Show file tree
Hide file tree
Showing 6 changed files with 41,947 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CFLAGS=-O3 -std=c++11
#CFLAGS=-g

all: compressedlut.o
g++ $(CFLAGS) -o compressedlut compressedlut.o

compressedlut.o: compressedlut.cpp compressedlut.h
g++ $(CFLAGS) -c compressedlut.cpp

clean:
rm *.o compressedlut.exe
Loading

0 comments on commit a2d18a1

Please sign in to comment.