minix/minix/commands/Makefile.inc
Ben Gras c2808d8b07 remove libcompat_minix as library
. get rid of includes in libcompat_minix:
	  . move configfile.h to minix/include/
	  . all others are unneeded as they point to other files
	. merge the .c files with libc

Change-Id: I5e840c66fb9bc484f377926aa9d66473bbd16259
2014-08-28 18:49:13 +02:00

14 lines
292 B
Makefile

# Only include Minix-specific libraries when compiling
# for non-Minix, i.e. not natively in a crossbuild.
.if !defined(HOSTPROGNAME)
LDADD+= -lminlib -lasyn -lterminfo
.endif
BINDIR?=/usr/bin
# BJG too many warnings here
NOGCCERROR?= yes
NOCLANGERROR?= yes
.include "../Makefile.inc"