# Makefile.programs
#
# by Mike Ferris
# Part of MOKit
# Copyright 1993, all rights reserved
#
# Used in the MiscKit by permission, modifications (C) 1994 by Don Yacktman.
#
# This is based on Next's standard library make architecture

##################### Programs used by the make #####################

CC = /bin/cc
PSWRAP = /usr/bin/pswrap
LEX = /usr/bin/lex
YACC = /usr/bin/yacc
MV = /bin/mv
MAKE = /bin/make
AR = /bin/ar
LIBTOOL = /bin/libtool
CP = /bin/cp
ECHO = echo
CD = cd
MKDIRS = /bin/mkdirs
RANLIB = /bin/ranlib
TAR = /bin/tar
CHMOD = /bin/chmod
RM = /bin/rm
INSTALL = /usr/bin/install
BASENAME = /usr/bin/basename
TOUCH = /usr/bin/touch
ARCHIFY = /usr/lib/arch_tool -archify_list

# use libtool as the archiver for fat or thin libraries on 3.1 or higher.
ARCHIVER = $(LIBTOOL) $(LIBTOOLFLAGS)
# use ar under 3.0 or for thin libraries.
#ARCHIVER = $(AR) $(ARFLAGS)
