Subversion Repositories SvarDOS

Rev

Rev 53 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42 mv_fox 1
#
2
# This is a makefile to build the Svarog386 install program
3
#
4
# You can use following targets:
5
#
6
#  make           - compiles the program
7
#  make clean     - cleans up all non-source files
8
#
9
 
10
all: install.com
11
 
67 mv_fox 12
install.com: keylay.h install.c cdrom.c input.c video.c
53 mv_fox 13
	wcl -0 -y -cc -wx -mt -lr -we -d0 -ox install.c cdrom.c input.c video.c kitten\kitten.c
42 mv_fox 14
	upx --8086 -9 install.com
15
 
67 mv_fox 16
locales.exe: locales.c
17
	wcl -0 -y -cc -wx -ml -lr -we -d0 -ox locales.c
18
 
19
keylay.h: locales.exe
20
	locales.exe
21
 
42 mv_fox 22
clean: .SYMBOLIC
23
	del install.com
67 mv_fox 24
	del locales.exe
42 mv_fox 25
	del *.obj