Changeset 128
- Timestamp:
- Oct 30, 2023, 9:48:18 PM (22 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/mm-progs/makefile
r104 r128 6 6 .PHONY: clean cleaner 7 7 8 CC = gcc9 CPPFLAGS = -O -Wno-pointer-sign -Wall -Zomf -Zcrtdll -s8 CC = icc 9 CPPFLAGS = /Ge+ /Gm+ /G5 /Ss /Gl /O+ /Oc+ /Ol- /Q+ /Ti /Sp4 /B"/pmtype:pm /ma /de" 10 10 INC = ./include -I ../../classes/inc -I ../../common_functions/include 11 11 DEFS = … … 20 20 21 21 $(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 24 25 all: $(LIBOBJS) 25 26 cd ./master_volume && make -
trunk/mediafolder/c/cddb/makefile
r127 r128 6 6 #CPPFLAGS = -O -Wno-write-strings -Zomf -Zcrtdll -s 7 7 #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"8 CPPFLAGS = /Ge+ /Gm+ /G5 /Ss /Gl /O+ /Oc+ /Ol- /Q+ /Ti /Sp4 /B"/pmtype:pm /ma /de" 9 9 CPPFLAGSVAC = /Ge- /Gm+ /G4 /Gl- /O+ /Oc+ /Ol- /Q+ 10 10 INC = ../../include … … 101 101 $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $< 102 102 clean: 103 -rm *.o 103 104 -rm *.obj 104 105 -rm *.exe
Note:
See TracChangeset
for help on using the changeset viewer.