Changeset 127 for trunk/mediafolder/c/cddb/makefile
- Timestamp:
- Oct 29, 2023, 11:05:48 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/mediafolder/c/cddb/makefile
r112 r127 3 3 include ../../../make.inc 4 4 5 CC = gcc6 CPPFLAGS = -O -Wno-write-strings -Zomf -Zcrtdll -s5 CC = icc 6 #CPPFLAGS = -O -Wno-write-strings -Zomf -Zcrtdll -s 7 7 #CPPFLAGSSTATIC = -O -Zomf -Zsys -Zmt -s 8 8 CPPFLAGS = /Ge+ /Gm+ /G5 /Ss /Gl /O+ /Oc+ /Ol- /Q+ /Ti /Gx- /Sp4 /B"/pmtype:pm /ma /De" 9 9 CPPFLAGSVAC = /Ge- /Gm+ /G4 /Gl- /O+ /Oc+ /Ol- /Q+ 10 10 INC = ../../include … … 17 17 BINDIR = ../../dist/bin 18 18 HELPERDIR = ..\helper 19 OBJECTS = cddb.o \20 cd.o \21 helper.o \22 cddbhelper.o \23 message.o 19 OBJECTS = cddb.obj \ 20 cd.obj \ 21 helper.obj \ 22 cddbhelper.obj \ 23 message.obj 24 24 LIBOBJECTS = $(LIBDIR)/sys_funcs.obj 25 25 … … 71 71 72 72 $(LIBDIR)/%.obj: $(COMMONSRC)/%.c 73 $(CC) -c -Wall -o$@ -Zomf -I$(INC) -I$(MOREINC) $< 73 # $(CC) -c -Wall -o$@ -Zomf -I$(INC) -I$(MOREINC) $< 74 $(CC) $(CPPFLAGS) /C+ -I$(INC) -I$(MOREINC) /Fo$@ $< 75 cd.obj: cd.c 76 # gcc -c $< -I$(INC) -Zcrtdll -Zomf 77 $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $< 78 helper.obj: helper.c 79 # gcc -c $< -I$(INC) -Zcrtdll -Zomf 80 $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $< 81 message.obj: message.c 82 # gcc -c $< -I$(INC) -Zcrtdll -Zomf 83 $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $< 84 pmcddb.exe: pmcddb.cpp $(OBJECTS) $(LIBOBJECTS) $(CDDBOBJ) $(INC)\cddb.h $(INC)\cddb.hh 85 $(CC) $(CPPFLAGS) -I$(INC) -I$(MOREINC) $< $(LIBOBJECTS) $(OBJECTS) $(CDDBOBJ) so32dll.lib TCPIP32.LIB pmcddb.def 74 86 75 cd.o: cd.c 76 gcc -c $< -I$(INC) -Zcrtdll -Zomf 77 78 helper.o: helper.c 79 gcc -c $< -I$(INC) -Zcrtdll -Zomf 80 81 message.o: message.c 82 gcc -c $< -I$(INC) -Zcrtdll -Zomf 83 84 pmcddb.exe: pmcddb.cc $(OBJECTS) $(LIBOBJECTS) $(CDDBOBJ) $(INC)\cddb.h $(INC)\cddb.hh 85 $(CC) $< $(CPPFLAGS) -I$(INC) -I$(MOREINC) $(LIBOBJECTS) $(OBJECTS) $(CDDBOBJ) -lsocket -lstdc++6_dll.lib pmcddb.def 86 87 cddb.o: cddb.cpp $(INC)\cddb.hh 88 gcc -c cddb.cpp -I$(INC) -Zcrtdll -Zomf 89 90 cddbcls.o: cddbcls.cpp $(INC)\cddb.hh $(INC)\cddb.h 87 cddb.obj: cddb.cpp $(INC)\cddb.hh 88 # gcc -c cddb.cpp -I$(INC) -Zcrtdll -Zomf 89 echo $(INC) 90 echo $(INCLUDE) 91 $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $< 92 cddbcls.obj: cddbcls.cpp $(INC)\cddb.hh $(INC)\cddb.h 91 93 cd ../pm_launchers && make 92 94 93 95 94 printHelper.o : printHelper.cpp95 gcc -c printHelper.cpp -I$(INC) -Zcrtdll -Zomf96 97 cddbhelper.o : $(HELPERDIR)\cddbhelper.cpp98 gcc -c $< -I$(INC) -Zcrtdll -Zomf99 96 printHelper.obj: printHelper.cpp 97 # gcc -c printHelper.cpp -I$(INC) -Zcrtdll -Zomf 98 $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $< 99 cddbhelper.obj: $(HELPERDIR)\cddbhelper.cpp 100 # gcc -c $< -I$(INC) -Zcrtdll -Zomf 101 $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $< 100 102 clean: 101 103 -rm *.obj
Note:
See TracChangeset
for help on using the changeset viewer.