PMODE = 0 Compiler = wcc386 Asm = tasm asm_options = -q -p -t -ml -zi -m3 compiler_options = /otexan /oh /5 /fp5 /zp1 /ob /ol+ #compiler_options = -d2 System = dos4g Exe_file = ctim.exe Object_files = main.obj & read_bmp.obj & writ_bmp.obj & read_tim.obj & writ_tim.obj & fileio.obj #################### ## Makefile rules ## #################### $(Exe_file): $(Object_files) # wlink system $(System) $(Linker_Options) name $(Exe_file) debug all file {$(Object_files)} wlink @bmp2tim.lnk !ifeq PMODE 1 pmwbind /r $(Exe_file) pmwlite /c4 $(Exe_file) !endif .c.obj: $(Compiler) $(Compiler_Options) $< .asm.obj: $(Asm) $(asm_options) $<