blob: 1f94136f6d6e4b8456a5f2e3bb4c5ea236597b0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# This is the BSD 4.3 University of Waterloo (uw) UNIX configuration file
# for DMAKE
# It simply modifies the values of LDLIBS to include libuw.a
# so that vfprintf can be found.
#
LDLIBS += -luw
osredir := $(OS)$(DIRSEPSTR)$(OSRELEASE)$(DIRSEPSTR)$(OSENVIRONMENT)
CFLAGS += -I$(osredir)
# install script for UW's /usr/software hierarchy...
install:
mkdir ../bin; strip ./dmake; mv ./dmake ../bin
chmod a+rx ../bin/dmake ../bin
mkdir ../lib; chmod a+rx ../lib
cp $(STARTUPFILE) ../lib
chmod a+r ../lib/startup.mk
|