Subversion Repositories SvarDOS

Rev

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

Rev Author Line No. Line
42 mv_fox 1
#
190 mateuszvis 2
# This is a makefile to build the SvarDOS install program
42 mv_fox 3
#
4
# You can use following targets:
5
#
309 mateuszvis 6
#  wmake           - compiles the program
7
#  wmake clean     - cleans up all non-source files
42 mv_fox 8
#
9
 
10
all: install.com
11
 
309 mateuszvis 12
install.com: keylay.h install.c input.c video.c
13
	wcl -0 -y -cc -wx -mt -lr -we -d0 -ox install.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