Changeset 126 for trunk/classes/mm-progs/videoplayer/makefile
- Timestamp:
- Oct 29, 2023, 11:01:57 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/classes/mm-progs/videoplayer/makefile
r53 r126 3 3 include ../../../make.inc 4 4 5 CC = gcc5 CC = icc 6 6 LIB_DIR = $d:/emx/lib 7 7 #CPPFLAGS = -Ge- /Gm+ -G4 -Gl /O+ -Oc+ -Ol 8 8 #CPPFLAGS = -O -Zomf -Zcrtdll -Zmtd -s 9 CPPFLAGS = -O -Wall -Zomf -Zmt -s 9 #CPPFLAGS = -O -Wall -Zomf -Zmt -s 10 CPPFLAGS = -Ge+ /Gm+ -G5 /Ss -Gl /O+ -Oc+ -Ol- /Q+ 10 11 INC = ../include -I ../../../classes/inc -I ../../../common_functions/include 11 12 DEFS = … … 21 22 22 23 $(LIBDIR)/%.obj: $(COMMONSRC)/%.c 23 gcc -c -Wall -o$@ -Zomf -I$(INC) $<24 24 # gcc -c -Wall -o$@ -Zomf -I$(INC) $< 25 $(CC) $(CPPFLAGS) /C+ -I$(INC) /Fo$@ $< 25 26 %.obj: %.c 26 gcc -c -Wall -o$@ -Zomf -I$(INC) $<27 27 # gcc -c -Wall -o$@ -Zomf -I$(INC) $< 28 $(CC) $(CPPFLAGS) /C -I$(INC) /Fo$@ $< 28 29 mmplayer.exe: mmplayer.c $(OBJECTS) $(OBJS2) makefile 29 30 #Use this command to link dynamicaly 30 gcc $(CPPFLAGS) -I$(INC) mmplayer.c $(OBJECTS) $(OBJS2) -lmmpm2.lib mmplayer.def31 $(CC) $(CPPFLAGS) -I$(INC) mmplayer.c $(OBJECTS) $(OBJS2) mmpm2.lib mmplayer.def 31 32 rc mmplayer.rc mmplayer.exe 32 33 33 34 vioplayer.exe: vioplayer.c 34 gcc $(CPPFLAGS) -I$(INC) vioplayer.c $(LIBDIR)/sys_funcs.obj -lmmpm2.lib mmplayer.def35 $(CC) $(CPPFLAGS) -I$(INC) vioplayer.c $(LIBDIR)/sys_funcs.obj mmpm2.lib mmplayer.def 35 36 36 37 clean:
Note:
See TracChangeset
for help on using the changeset viewer.