# # Command & Conquer Red Alert(tm) # Copyright 2025 Electronic Arts Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # #**************************************************************************** # # C O N F I D E N T I A L --- W E S T W O O D S T U D I O S # #---------------------------------------------------------------------------- # # PROJECT # VQMisc 32-bit library. (Watcom/4GW) # # FILE # makefile # # DESCRIPTION # Makefile for generating VQMisc32 library. # # PROGRAMMER # Denzil E. Long, Jr. # # DATE # Feburary 10, 1995 # #**************************************************************************** .OPTIMIZE .ERASE #---------------------------------------------------------------------------- # PROJECTS DEPENDENT MACROS #---------------------------------------------------------------------------- PRJ = .. PRJNAME = vqm32wp PRJDIR = $(PRJ)\VQM32 WATCOM = c:\watcom OBJECTS = & iff.obj & profile.obj & audzap.obj & audunzap.obj & targa.obj & vertag.obj & sortpal.obj & palette.obj & mono.obj & lcwuncmp.obj & lcwcomp.obj & testvb.obj & vb.obj & mcgabuf.obj & video.obj & xmode.obj & xmodepg.obj & vesabuf.obj & vesablit.obj & vesavid.obj & soscodec.obj & chrwidth.obj & mixfile.obj & crc.obj & fillrect.obj & captoken.obj & huffcmp.obj & huffdcmp.obj & mem.obj & drawchar.obj & textprnt.obj & font.obj & #---------------------------------------------------------------------------- # PATH MACROS #---------------------------------------------------------------------------- !ifdef %LIB LIBPATH = $(PRJ)\LIB;$(%LIB) !else LIBPATH = $(PRJ)\LIB;$(WATCOM)\LIB386 !endif !ifdef %INCLUDE INCLUDEPATH = $(PRJ)\INCLUDE;$(%INCLUDE) !else INCLUDEPATH = $(PRJ)\INCLUDE;$(WATCOM)\H !endif path_c = .\ path_cpp = .\ path_h = .\ path_asm = .\ path_i = .\ path_obj = .\O path_lib = $(PRJ)\LIB path_exe = .\ #---------------------------------------------------------------------------- # IMPLICIT RULE EXTENSIONS AND PATHS #---------------------------------------------------------------------------- .EXTENSIONS : .EXTENSIONS : .exe .lib .obj .c .cpp .asm .h .i .c : $(path_c) .cpp : $(path_cpp) .h : $(path_h) .asm : $(path_asm) .i : $(path_i) .obj : $(path_obj) .lib : $(path_lib) .exe : $(path_exe) #---------------------------------------------------------------------------- # TOOLS, COMMANDS AND CONFIGURATIONS #---------------------------------------------------------------------------- CC_CMD = wcc386 CCP_CMD = wpp386 ASM_CMD = tasm32 LINK_CMD = wlink LIB_CMD = wlib CC_OPTS = -i$(INCLUDEPATH) -j -zp1 -5r -mf -oaeilrt -s -zq ASM_OPTS = /t /m /w+ /jJUMPS /ml /p /z /dPHARLAP_TNT=0 LIB_OPTS = /b /c /q LINK_CFG = $(PRJNAME).lnk #---------------------------------------------------------------------------- # DEFAULT TARGET #---------------------------------------------------------------------------- all : $(PRJNAME).lib .SYMBOLIC $(PRJNAME).lib : $(OBJECTS) .SYMBOLIC #---------------------------------------------------------------------------- # IMPLICIT RULES #---------------------------------------------------------------------------- .c.obj : $(CC_CMD) $(CC_OPTS) -fo=$(PATH_OBJ)\$^. $< $(LIB_CMD) $(LIB_OPTS) $(path_lib)\$(PRJNAME).lib -+$(path_obj)\$]& .cpp.obj : $(CCP_CMD) $(CC_OPTS) -fo=$(PATH_OBJ)\$^. $< $(LIB_CMD) $(LIB_OPTS) $(path_lib)\$(PRJNAME).lib -+$(path_obj)\$]& .asm.obj: $(ASM_CMD) $(ASM_OPTS) $<,$(path_obj)\$^. $(LIB_CMD) $(LIB_OPTS) $(path_lib)\$(PRJNAME).lib -+$(path_obj)\$]& update: .SYMBOLIC @echo Updating VQMisc32 header files! @copy *.h $(PRJ)\INCLUDE\VQM32 >NUL @copy *.i $(PRJ)\INCLUDE\VQM32 >NUL