ubuntu 14.04 - Makefile:13: *** missing separator. Stop. error in bsdiff-4.3 -
please me compile following makefile.
cflags += -o3 -lbz2 prefix ?= /usr/local install_program ?= ${install} -c -s -m 555 install_man ?= ${install} -c -m 444 all: bsdiff bspatch bsdiff: bsdiff.c bspatch: bspatch.c install: ${install_program} bsdiff bspatch ${prefix}/bin .ifndef without_man ${install_man} bsdiff.1 bspatch.1 ${prefix}/man/man1 .endif
while trying make file shows error
makefile:13: *** missing separator. stop.
i using ubuntu 14.04
.ifndef
not valid gnu make syntax. need remove full stop have in front of ifndef
, endif
.
see gnu make manual.
Comments
Post a Comment