Started to merge @ZobyTwo cmake branch

This commit is contained in:
xawotihs
2015-09-26 21:52:07 +02:00
parent 9e77899535
commit 85f4a4c36a
3112 changed files with 4615 additions and 9 deletions

25
thirdparty/zipFS/Makefile vendored Normal file
View File

@@ -0,0 +1,25 @@
MAIN=zfs
CC=g++
CFLAGS= -O2 -Wall -DNDEBUG -DUNIX
INCLUDES=
LFLAGS= -lz
SRCS = \
zfs.cpp \
zfsystem.cpp \
ziphdr.cpp \
zstream.cpp \
OBJS = $(SRCS:.cpp=.o)
$(MAIN): $(OBJS)
$(CC) -o $(MAIN) $(LFLAGS) $(OBJS)
.cpp.o:
$(CC) $(CFLAGS) $(INCLUDES) -c $<
clean:
rm -f *.o $(MAIN)