From e611b132f9b8abe35b362e5870b74bce94a1e58e Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 16 May 2020 20:51:50 -0700 Subject: initial commit --- private/developr/makefile | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 private/developr/makefile (limited to 'private/developr/makefile') diff --git a/private/developr/makefile b/private/developr/makefile new file mode 100644 index 000000000..b188103e8 --- /dev/null +++ b/private/developr/makefile @@ -0,0 +1,44 @@ +!IF 0 + +Copyright (c) 1989 Microsoft Corporation + +Module Name: + + makefile. + +Abstract: + + This makefile builds the individual user profile files by merging + each user's private profile files with the public profile files + contained in this directory. This makefile should be executed each + time the DEVELOPR subdirectory tree is ssync'd. + + Usage: + + make ; Builds current user's profile files + make all ; Builds all users' profile files + make username ; Builds a particular user's profile files + make clean ; Erase ALL USERS profile files built by + ; this makefile. + +Author: + + Steve Wood (stevewo) 27-Feb-1989 + +Revision History: + +!ENDIF + +# +# Current user's target and dependencies +# +$(USERNAME):$(USERNAME)\netnav.ini \ + $(USERNAME)\accounts.net + +$(USERNAME)\netnav.ini: netnav.pub $(USERNAME)\netnav.pri + copy netnav.pub+$(USERNAME)\netnav.pri $(USERNAME)\netnav.ini + +$(USERNAME)\accounts.net: $(USERNAME)\netnav.ini $(USERNAME)\accounts.pri + copy $(USERNAME)\accounts.pri $(USERNAME)\accounts.net + gacctnet <$(USERNAME)\netnav.ini >>$(USERNAME)\accounts.net + -- cgit v1.2.3