mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 01:09:24 -04:00
- Fix a silly typo in files/Makefile
- Add SHA256 hash while here
This commit is contained in:
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
|
@ -1,2 +1,3 @@
|
||||||
MD5 (bicom101.zip) = 6d07af1f3255012944777c43e8224d3f
|
MD5 (bicom101.zip) = 6d07af1f3255012944777c43e8224d3f
|
||||||
|
SHA256 (bicom101.zip) = b9d421520bb70fdbd49dae556bcd981010545235a995be77c1009ad57d4da4dc
|
||||||
SIZE (bicom101.zip) = 104408
|
SIZE (bicom101.zip) = 104408
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# $FreeBSD$
|
# $FreeBSD$
|
||||||
#
|
#
|
||||||
|
|
||||||
CCX = c++
|
CXX ?= c++
|
||||||
|
|
||||||
IDIR = -I./bialib
|
IDIR = -I./bialib
|
||||||
|
|
||||||
|
@ -16,10 +16,10 @@ OBJS = bialib/mtstream.o \
|
||||||
bicom/bicom.o
|
bicom/bicom.o
|
||||||
|
|
||||||
.cpp.o:
|
.cpp.o:
|
||||||
${CCX} ${CXXFLAGS} ${IDIR} -c $< -o $*.o
|
${CXX} ${CXXFLAGS} ${IDIR} -c $< -o $*.o
|
||||||
|
|
||||||
all: ${OBJS}
|
all: ${OBJS}
|
||||||
${CCX} ${CXXFLAGS} -o bicom/bicom ${OBJS}
|
${CXX} ${CXXFLAGS} -o bicom/bicom ${OBJS}
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f bicom/bicom bicom/*.o bialib/*.o core
|
rm -f bicom/bicom bicom/*.o bialib/*.o core
|
||||||
|
|
Loading…
Add table
Reference in a new issue