diff options
author | Jason Rumney <jasonr@gnu.org> | 2000-06-11 20:53:47 +0000 |
---|---|---|
committer | Jason Rumney <jasonr@gnu.org> | 2000-06-11 20:53:47 +0000 |
commit | ca69ca83f17a36dd869f755249d56b07fae5efe3 (patch) | |
tree | d5abebda1a1b82bebe3f6b3205928a0b1b66997c /lib-src | |
parent | 0007f8d2cfd3eaa1cacf74915349ca0fc36740ed (diff) | |
download | emacs-ca69ca83f17a36dd869f755249d56b07fae5efe3.tar.gz |
Added targets for ebrowse.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/makefile.nt | 12 |
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 \ $(BLD)\hexl.exe \ $(BLD)\ctags.exe \ $(BLD)\etags.exe \ + $(BLD)\ebrowse.exe \ $(BLD)\movemail.exe \ $(BLD)\fakemail.exe \ @@ -61,6 +62,7 @@ $(BLD)\fakemail.exe: $(BLD)\fakemail.obj $(BLD)\ntlib.obj make-docfile: $(BLD) $(BLD)\make-docfile.exe etags: $(BLD) $(BLD)\etags.exe +ebrowse: $(BLD) $(BLD)\ebrowse.exe hexl: $(BLD) $(BLD)\hexl.exe movemail: $(BLD) $(BLD)\movemail.exe fakemail: $(BLD) $(BLD)\fakemail.exe @@ -112,6 +114,16 @@ CTAGS_CFLAGS = -DCTAGS $(ETAGS_CFLAGS) $(BLD)\ctags.obj: ctags.c $(CC) $(CFLAGS) $(CTAGS_CFLAGS) -Fo$@ ctags.c +EBROWSE_OBJ = $(BLD)\ebrowse.obj \ + $(BLD)\getopt.obj \ + $(BLD)\getopt1.obj \ + $(BLD)\ntlib.obj + +$(BLD)\ebrowse.exe: $(EBROWSE_OBJ) + $(LINK) -out:$@ $(LINK_FLAGS) $(EBROWSE_OBJ) $(LIBS) + +$(BLD)\ebrowse.obj: ebrowse.c ..\src\config.h + $(CC) $(CFLAGS) -DVERSION=\"$(VERSION)\" -Fo$@ ebrowse.c # # don't know what to do with these yet... # |