summaryrefslogtreecommitdiffstats
path: root/private/developr/makefile
diff options
context:
space:
mode:
authorAdam <you@example.com>2020-05-17 05:51:50 +0200
committerAdam <you@example.com>2020-05-17 05:51:50 +0200
commite611b132f9b8abe35b362e5870b74bce94a1e58e (patch)
treea5781d2ec0e085eeca33cf350cf878f2efea6fe5 /private/developr/makefile
downloadNT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.gz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.bz2
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.lz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.xz
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.tar.zst
NT4.0-e611b132f9b8abe35b362e5870b74bce94a1e58e.zip
Diffstat (limited to 'private/developr/makefile')
-rw-r--r--private/developr/makefile44
1 files changed, 44 insertions, 0 deletions
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
+