Subversion Repositories SvarDOS

Rev

Rev 190 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 190 Rev 309
Line 1... Line 1...
1
#
1
#
2
# This is a makefile to build the SvarDOS install program
2
# This is a makefile to build the SvarDOS install program
3
#
3
#
4
# You can use following targets:
4
# You can use following targets:
5
#
5
#
6
#  make           - compiles the program
6
#  wmake           - compiles the program
7
#  make clean     - cleans up all non-source files
7
#  wmake clean     - cleans up all non-source files
8
#
8
#
9
 
9
 
10
all: install.com
10
all: install.com
11
 
11
 
12
install.com: keylay.h install.c cdrom.c input.c video.c
12
install.com: keylay.h install.c input.c video.c
13
	wcl -0 -y -cc -wx -mt -lr -we -d0 -ox install.c cdrom.c input.c video.c kitten\kitten.c
13
	wcl -0 -y -cc -wx -mt -lr -we -d0 -ox install.c input.c video.c kitten\kitten.c
14
	upx --8086 -9 install.com
14
	upx --8086 -9 install.com
15
 
15
 
16
locales.exe: locales.c
16
locales.exe: locales.c
17
	wcl -0 -y -cc -wx -ml -lr -we -d0 -ox locales.c
17
	wcl -0 -y -cc -wx -ml -lr -we -d0 -ox locales.c
18
 
18