- Fix a silly typo in files/Makefile

- Add SHA256 hash while here
This commit is contained in:
Alexey Dokuchaev 2005-12-20 16:24:16 +00:00
parent 878295ccf1
commit 1aec21848d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=151659
2 changed files with 4 additions and 3 deletions

View file

@ -1,2 +1,3 @@
MD5 (bicom101.zip) = 6d07af1f3255012944777c43e8224d3f
SHA256 (bicom101.zip) = b9d421520bb70fdbd49dae556bcd981010545235a995be77c1009ad57d4da4dc
SIZE (bicom101.zip) = 104408

View file

@ -2,7 +2,7 @@
# $FreeBSD$
#
CCX = c++
CXX ?= c++
IDIR = -I./bialib
@ -16,10 +16,10 @@ OBJS = bialib/mtstream.o \
bicom/bicom.o
.cpp.o:
${CCX} ${CXXFLAGS} ${IDIR} -c $< -o $*.o
${CXX} ${CXXFLAGS} ${IDIR} -c $< -o $*.o
all: ${OBJS}
${CCX} ${CXXFLAGS} -o bicom/bicom ${OBJS}
${CXX} ${CXXFLAGS} -o bicom/bicom ${OBJS}
clean:
rm -f bicom/bicom bicom/*.o bialib/*.o core