mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
1a9884eb13
* os2/Makefile.OS2, os2/Makefile.EMX: new files. Use "gmake -f Makefile.EMX" to compile * os2/slint.os2.c: copied from ../nt/slint.nt.c * os2/direct.h: dummy file. Replaces douzen of other dummy files :-) * os2/Makefile: list of distibution files corrected * os2/drive.os2.c, os2/chmod.os2.c: button_new() calls updated * os2/*: many minor changes for EMX.
38 lines
803 B
Makefile
38 lines
803 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 OS/2, use Makefile.release instead.
|
|
#
|
|
# Please read the file README.OS2 in the top directory of the distribution
|
|
#
|
|
|
|
include ../Make.common
|
|
|
|
FILES = Makefile Makefile.EMX Makefile.OS2 chmod.os2.c config.h \
|
|
cons.handler.os2.c cons.saver.h direct.h dirent.h dirent.os2.c \
|
|
drive.h drive.os2.c inst.cmd key.os2.c mc.def mc.ico slint.os2.c \
|
|
util.os2.c
|
|
|
|
FILESSYS = sys/param.h sys/time.h
|
|
|
|
all:
|
|
|
|
TAGS: $(FILES)
|
|
etags $(FILES)
|
|
|
|
clean realclean distclean cross:
|
|
|
|
install:
|
|
|
|
uninstall:
|
|
|
|
depend dep:
|
|
|
|
fastdeploc:
|
|
|
|
distcopy:
|
|
-mkdir ../../mc-$(VERSION)/os2
|
|
$(CP) $(FILES) ../../mc-$(VERSION)/os2
|
|
-mkdir ../../mc-$(VERSION)/os2/sys
|
|
$(CP) $(FILESSYS) ../../mc-$(VERSION)/os2/sys
|