aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/makefile.nt
diff options
context:
space:
mode:
authorJason Rumney2000-06-11 20:53:47 +0000
committerJason Rumney2000-06-11 20:53:47 +0000
commitd4bd593f076eaa13b185f0fd9cb06c9912f24633 (patch)
tree56a177897d0238242f3ac2ae23e936eaaa5eceab /lib-src/makefile.nt
parent945499122b67acecdb020124c6b862ddd8f29a79 (diff)
downloademacs-d4bd593f076eaa13b185f0fd9cb06c9912f24633.tar.gz
emacs-d4bd593f076eaa13b185f0fd9cb06c9912f24633.zip
Added targets for ebrowse.
Diffstat (limited to 'lib-src/makefile.nt')
-rw-r--r--lib-src/makefile.nt12
1 files changed, 12 insertions, 0 deletions
diff --git a/lib-src/makefile.nt b/lib-src/makefile.nt
index 0ac4fe8c4f2..33406f6a540 100644
--- a/lib-src/makefile.nt
+++ b/lib-src/makefile.nt
@@ -34,6 +34,7 @@ ALL = $(BLD)\make-docfile.exe \
34 $(BLD)\hexl.exe \ 34 $(BLD)\hexl.exe \
35 $(BLD)\ctags.exe \ 35 $(BLD)\ctags.exe \
36 $(BLD)\etags.exe \ 36 $(BLD)\etags.exe \
37 $(BLD)\ebrowse.exe \
37 $(BLD)\movemail.exe \ 38 $(BLD)\movemail.exe \
38 $(BLD)\fakemail.exe \ 39 $(BLD)\fakemail.exe \
39 40
@@ -61,6 +62,7 @@ $(BLD)\fakemail.exe: $(BLD)\fakemail.obj $(BLD)\ntlib.obj
61 62
62make-docfile: $(BLD) $(BLD)\make-docfile.exe 63make-docfile: $(BLD) $(BLD)\make-docfile.exe
63etags: $(BLD) $(BLD)\etags.exe 64etags: $(BLD) $(BLD)\etags.exe
65ebrowse: $(BLD) $(BLD)\ebrowse.exe
64hexl: $(BLD) $(BLD)\hexl.exe 66hexl: $(BLD) $(BLD)\hexl.exe
65movemail: $(BLD) $(BLD)\movemail.exe 67movemail: $(BLD) $(BLD)\movemail.exe
66fakemail: $(BLD) $(BLD)\fakemail.exe 68fakemail: $(BLD) $(BLD)\fakemail.exe
@@ -112,6 +114,16 @@ CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS)
112$(BLD)\ctags.obj: ctags.c 114$(BLD)\ctags.obj: ctags.c
113 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) -Fo$@ ctags.c 115 $(CC) $(CFLAGS) $(CTAGS_CFLAGS) -Fo$@ ctags.c
114 116
117EBROWSE_OBJ = $(BLD)\ebrowse.obj \
118 $(BLD)\getopt.obj \
119 $(BLD)\getopt1.obj \
120 $(BLD)\ntlib.obj
121
122$(BLD)\ebrowse.exe: $(EBROWSE_OBJ)
123 $(LINK) -out:$@ $(LINK_FLAGS) $(EBROWSE_OBJ) $(LIBS)
124
125$(BLD)\ebrowse.obj: ebrowse.c ..\src\config.h
126 $(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -Fo$@ ebrowse.c
115# 127#
116# don't know what to do with these yet... 128# don't know what to do with these yet...
117# 129#