gno/build.tools/Makefile
gdr-ftp 7de2321a08 Makefile:
- initial checkin.  Needed for 'install' and 'release' targets.

dmake.startup, startup.mk:
	- When dmake finds a startup.mk in the current directory, it
	  parses that file after the system startup.mk.  In this case they're
	  one and the same.  While this shouldn't be a problem, it's
	  causing dmake to crash.  See PR#99.

	  The workaround was to rename startup.mk in this directory to
	  dmake startup.  It is renamed back to its proper name in the
	  recipes to the install and release targets.
1998-12-22 15:57:32 +00:00

33 lines
853 B
Makefile

#
# $Id: Makefile,v 1.1 1998/12/22 15:57:32 gdr-ftp Exp $
#
.INCLUDE: /src/gno/paths.mk
#
# In this directory, we're currently only copying some files verbatim,
# which makes our targets very simple.
#
INSTALL = /usr/bin/install
build:
@/bin/true
install:
$(INSTALL) -d -m755 /usr/local/lib /usr/lib
$(INSTALL) -d -m755 13/RInclude
$(INSTALL) -m644 dmake.startup /usr/local/lib/startup.mk
$(INSTALL) -m644 dmake.startup /usr/lib/startup.mk
$(INSTALL) -m644 builddate.rez 13/RInclude
release:
$(INSTALL) -d -m755 $(RELEASE_DIR)/usr/local/lib $(RELEASE_DIR)/usr/lib
$(INSTALL) -d -m755 $(RELEASE_DIR)/lib/RInclude
$(INSTALL) -m644 dmake.startup $(RELEASE_DIR)/usr/local/lib/startup.mk
$(INSTALL) -m644 dmake.startup $(RELEASE_DIR)/usr/lib/startup.mk
$(INSTALL) -m644 builddate.rez $(RELEASE_DIR)/lib/RInclude
clean clobber:
@/bin/true