freebsd-ports/archivers/bicom/files/Makefile
Alexey Dokuchaev 82e4a78c1c - Fix files/Makefile and mark the port as MAKE_JOBS_SAFE
- Cleanup Makefile
- Drop maintainership
2009-03-30 09:33:56 +00:00

25 lines
373 B
Makefile

#
# $FreeBSD$
#
CXX ?= c++
IDIR = -I./bialib
OBJS = bialib/mtstream.o \
bialib/simplemodel.o \
bialib/arithmetic.o \
bialib/trivial.o \
bialib/sufftree.o \
bialib/exclude.o \
bialib/rijndael.o \
bicom/bicom.o
.cpp.o:
${CXX} ${CXXFLAGS} ${IDIR} -o $@ -c $<
all: ${OBJS}
${CXX} ${CXXFLAGS} -o bicom/bicom $>
clean:
rm -f bicom/bicom bicom/*.o bialib/*.o core