Changeset 128


Ignore:
Timestamp:
Oct 30, 2023, 9:48:18 PM (22 months ago)
Author:
gyoung
Message:

Changes so COMMONSRC objects are built with VAC. Improve cddb makefile clean target. Fixes pmcddb.exe initialization failure. Also fixes a potential problem with the player etc exes

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/mm-progs/makefile

    r104 r128  
    66.PHONY:         clean cleaner
    77
    8 CC           = gcc
    9 CPPFLAGS     = -O -Wno-pointer-sign -Wall -Zomf -Zcrtdll -s
     8CC           = icc
     9CPPFLAGS     = /Ge+ /Gm+ /G5 /Ss /Gl /O+ /Oc+ /Ol- /Q+ /Ti /Sp4 /B"/pmtype:pm /ma /de"
    1010INC             =       ./include -I ../../classes/inc -I ../../common_functions/include
    1111DEFS         =
     
    2020
    2121$(LIBDIR)/%.obj:        $(COMMONSRC)/%.c
    22         gcc -c -Wno-pointer-sign -Wall -o$@ -Zomf -I$(INC) $<           
    23 
     22#       gcc -c -Wno-pointer-sign -Wall -o$@ -Zomf -I$(INC) $<           
     23        $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $<
     24       
    2425all:    $(LIBOBJS)
    2526        cd ./master_volume && make
  • trunk/mediafolder/c/cddb/makefile

    r127 r128  
    66#CPPFLAGS     = -O -Wno-write-strings -Zomf -Zcrtdll -s
    77#CPPFLAGSSTATIC     = -O -Zomf -Zsys -Zmt -s
    8 CPPFLAGS        =  /Ge+ /Gm+ /G5 /Ss /Gl /O+ /Oc+ /Ol- /Q+ /Ti /Gx- /Sp4 /B"/pmtype:pm /ma /De"
     8CPPFLAGS        =  /Ge+ /Gm+ /G5 /Ss /Gl /O+ /Oc+ /Ol- /Q+ /Ti /Sp4 /B"/pmtype:pm /ma /de"
    99CPPFLAGSVAC  = /Ge- /Gm+ /G4 /Gl- /O+ /Oc+ /Ol- /Q+
    1010INC             = ../../include
     
    101101                $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $<
    102102clean:
     103        -rm *.o
    103104        -rm *.obj
    104105        -rm *.exe
Note: See TracChangeset for help on using the changeset viewer.