This commit is contained in:
commit
47aee91ef4
396 changed files with 32003 additions and 0 deletions
35
build/getuser.mak
Normal file
35
build/getuser.mak
Normal file
|
@ -0,0 +1,35 @@
|
|||
#----------------------------------------------------------------------------
|
||||
# GETUSER.MAK
|
||||
#
|
||||
# Get's the user vars in from their makefile
|
||||
#
|
||||
# Their makefile is at $(USERS_DIR)/<user name>/makefile
|
||||
# The user name is whatever they logged onto
|
||||
# their computer as (in lower case)
|
||||
#
|
||||
# Tabbed for 5 9 (Please do not change)
|
||||
#
|
||||
# Created: 3rd February 1999
|
||||
#
|
||||
# Copyright (C) 1997-1998 G R Liddon
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
# Now that's all sorted include the users vars
|
||||
# --------------------------------------------
|
||||
|
||||
ifndef USER_NAME
|
||||
|
||||
USER_NAME := $(shell $(LOG_NAME))
|
||||
|
||||
endif
|
||||
|
||||
|
||||
USER_VAR_FILE := $(USERS_DIR)/$(USER_NAME)/makefile
|
||||
|
||||
$(USERS_DIR)/$(USER_NAME)/makefile :
|
||||
@$(ECHO) You Need a user file. See gary liddon
|
||||
|
||||
include $(USER_VAR_FILE)
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# end
|
Loading…
Add table
Add a link
Reference in a new issue