mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
9d4987c84b
* cmd.c: Internal edit is used by default. vi may be confusing for some users. * tree.c: tree_rmdir_cmd() should not return any value, because it is not analyzed for errors. * main.c: NT code: use O_BINARY instead of _O_BINARY * util.c: DO not test for arguments that do not make sense under Windows NT. * file.c: utime.h always included for Windows NT port. * view.c: Events are flushed only if the ports supports it. Lots of Windows/NT changes, but I will let Pavlov write the ChangeLog entries. Mon Mar 16 13:05:47 1998 Pavel Roskin <pavel@absolute.spb.su> * tkview.c: Include stdio.h; Minor spelling corrections added.
38 lines
827 B
Makefile
38 lines
827 B
Makefile
#
|
|
# This makefile is for making the distribution on Unix
|
|
# You won't be able to compile with this one the Midnight Commander
|
|
# on Windows NT, use Makefile.NT instead.
|
|
#
|
|
# Please read the file README.NT in the top directory of the distribution
|
|
#
|
|
|
|
include ../Make.common
|
|
|
|
FILES = Makefile TODO dirent.c mc.ico bugs mc.rc config.h dirent.h \
|
|
Makefile.NT chmod.nt.c drive.nt.c slint.nt.c cons.handler.nt.c \
|
|
key.nt.c utilnt.c Makefile.NT Makefile.VC4 Makefile.BC5 \
|
|
util.WinNT.c util.debug.c util.Win32.c util.Win32.h util.debug.h \
|
|
drive.h
|
|
|
|
FILESSYS = sys/param.h sys/time.h
|
|
|
|
all:
|
|
|
|
TAGS: $(FILES)
|
|
etags $(FILES)
|
|
|
|
clean realclean distclean cross:
|
|
|
|
install:
|
|
|
|
uninstall:
|
|
|
|
depend dep:
|
|
|
|
fastdeploc:
|
|
|
|
distcopy:
|
|
$(CP) $(FILES) ../../mc-$(VERSION)/nt
|
|
-mkdir ../../mc-$(VERSION)/nt/sys
|
|
$(CP) $(FILESSYS) ../../mc-$(VERSION)/nt/sys
|