zlib includes in lib/libz, install them too in /usr/include from toplevel makefile.
This commit is contained in:
parent
ae947059e6
commit
7b7091e905
6 changed files with 6 additions and 2 deletions
1
Makefile
1
Makefile
|
@ -40,6 +40,7 @@ mkfiles:
|
|||
|
||||
includes:
|
||||
cd include && $(MAKE) includes
|
||||
cd lib && $(MAKE) includes
|
||||
|
||||
libraries:
|
||||
cd lib && sh ack_build.sh obj depend all install
|
||||
|
|
|
@ -9,7 +9,7 @@ INCS= alloca.h ansi.h a.out.h ar.h assert.h configfile.h ctype.h \
|
|||
stdint.h stdio.h stdlib.h string.h strings.h sysexits.h \
|
||||
syslog.h tar.h termcap.h termios.h time.h timers.h tools.h \
|
||||
ttyent.h ucontext.h unistd.h utime.h utmp.h wchar.h wctype.h \
|
||||
hgfs.h tzfile.h util.h zconf.h zlib.h
|
||||
hgfs.h tzfile.h util.h
|
||||
INCS+= arpa/inet.h
|
||||
INCS+= minix/a.out.h minix/bitmap.h minix/callnr.h minix/cdrom.h \
|
||||
minix/com.h minix/config.h minix/const.h minix/cpufeature.h \
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.include <minix.own.mk>
|
||||
|
||||
SUBDIR= csu libc libcurses libdriver libnetdriver libend libedit libm libsys \
|
||||
libtimers libutil libbz2 libl libhgfs
|
||||
libtimers libutil libbz2 libl libhgfs libz
|
||||
|
||||
.if ${COMPILER_TYPE} == "ack"
|
||||
SUBDIR+= ack/libd ack/libe ack/libfp ack/liby
|
||||
|
|
|
@ -5,4 +5,7 @@ LIB= z
|
|||
SRCS= adler32.c compress.c crc32.c deflate.c gzclose.c gzlib.c gzread.c \
|
||||
gzwrite.c infback.c inffast.c inflate.c inftrees.c trees.c uncompr.c zutil.c
|
||||
|
||||
INCSDIR= /usr/include
|
||||
INCS= zconf.h zlib.h
|
||||
|
||||
.include <minix.lib.mk>
|
||||
|
|
Loading…
Reference in a new issue