mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-18 17:29:28 +03:00
PC port will be copied on "make dist" instead of OS/2 and NT ports
This commit is contained in:
parent
f325bd79c0
commit
becae6c1bb
@ -4,7 +4,7 @@ VPATH = @srcdir@
|
||||
rootdir = $(srcdir)
|
||||
@MCFGR@@MCF@
|
||||
|
||||
foreigndirs=nt os2
|
||||
foreigndirs=pc
|
||||
codedirs=vfs lib doc slang edit src tk xv gnome icons
|
||||
unixdirs=intl $(codedirs) @POSUB@
|
||||
alldirs=$(unixdirs) $(foreigndirs)
|
||||
@ -105,7 +105,7 @@ distdirs:
|
||||
mkdir ../mc-$(VERSION)/xv/support/xview_private; \
|
||||
mkdir ../mc-$(VERSION)/tk; \
|
||||
mkdir ../mc-$(VERSION)/gnome; \
|
||||
mkdir ../mc-$(VERSION)/nt; \
|
||||
mkdir ../mc-$(VERSION)/pc; \
|
||||
mkdir ../mc-$(VERSION)/po; \
|
||||
mkdir ../mc-$(VERSION)/edit;
|
||||
|
||||
|
39
pc/Makefile
39
pc/Makefile
@ -0,0 +1,39 @@
|
||||
#
|
||||
# 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 or OS/2
|
||||
#
|
||||
# Please read the file README in this directory if you want to compile
|
||||
# the Midnight Commander for Windows NT or OS/2
|
||||
#
|
||||
|
||||
include ../Make.common
|
||||
|
||||
FILES = BUGS Makefile Makefile.BC2 Makefile.BC5 Makefile.EMX \
|
||||
Makefile.IBM Makefile.PC Makefile.VC4 README TODO chmod.c \
|
||||
config.h cons_nt.c cons_os2.c dirent.h dirent_nt.c dirent_os2.c \
|
||||
drive.c drive.h key_nt.c key_os2.c mc.def mc.rc mc_nt.ico \
|
||||
mc_os2.ico slint_pc.c trace_nt.c trace_nt.h util_nt.c \
|
||||
util_os2.c util_win32.c util_win32.h util_winnt.c
|
||||
|
||||
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)/pc
|
||||
-mkdir ../../mc-$(VERSION)/pc/sys
|
||||
$(CP) $(FILESSYS) ../../mc-$(VERSION)/pc/sys
|
Loading…
Reference in New Issue
Block a user