Ignore:
Timestamp:
Jul 13, 2017, 5:17:57 AM (8 years ago)
Author:
stevenhl
Message:

Import modifications from cwmm-0_2_9-work-01_10_2006.zip dated 2006-08-27

Location:
trunk/classes/mm-progs/imageconverter
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/mm-progs/imageconverter/imgconv.DEF

    r2 r4  
    1 ; DEF-file for imgconv.exe. This is a PM program which
    2 ; shows a dialog box and converts image files.
    31;
    4 ;                    (C) Chris Wohlgemuth 2002
    5 
     2; IMGCONV: PM-Program for image file converting
     3;
     4;
     5;    (c) C. Wohlgemuth 2002-2006
     6;
     7;
     8; Created 12 Feb 2006 19:48:25
     9;
    610;/*
    711; * This program is free software; you can redistribute it and/or modify
     
    2529; * http://www.geocities.com/SiliconValley/Sector/5785/
    2630; */
    27 NAME imgconv WINDOWAPI
    28 DESCRIPTION '$@#(c) Chris Wohlgemuth :V0.2.7 (17.08.2003)#@PM-Program for image file converting'
     31NAME IMGCONV WINDOWAPI
     32DESCRIPTION '$@#(c) C. Wohlgemuth 2006:0.2        #@##1## 12/02/06 19:48:25        My ;-)     ::::9::@@PM-Program for image file converting V0.2.9'
    2933STACKSIZE    1638400
    30 
    31 
    32 
    33 
  • trunk/classes/mm-progs/imageconverter/makefile

    r2 r4  
    22
    33include ../../../make.inc
     4include ../mmprog.inc
    45
    5 CC           = gcc
    6 LIB_DIR      = $d:/emx/lib
    7 #CPPFLAGS     = -Ge- /Gm+ -G4 -Gl  /O+ -Oc+ -Ol
    8 #CPPFLAGS     = -O -Zomf -Zcrtdll -Zmtd -s
    9 CPPFLAGS     = -O -Wall -Zomf -Zmt -Zsys -s
    10 INC             = ../include -I ../../../classes/inc -I ../../../common_functions/include
    11 DEFS         =
    12 PROGS        = 
    13 ODIR            = .
    14 CPPDIR  = .
    15 LIBDIR  =       ../lib
    16 OBJECTS =       $(LIBDIR)/message.obj $(LIBDIR)/helper.obj $(LIBDIR)/progbars.obj $(LIBDIR)/sys_funcs.obj
     6OBJECTS =       $(LIBDIR)/message.obj \
     7                $(LIBDIR)/helper.obj \
     8                $(LIBDIR)/progbars.obj \
     9                $(LIBDIR)/sys_funcs.obj
    1710
    1811all:    imgconv.exe
    1912
    20 $(LIBDIR)/%.obj:        $(COMMONSRC)/%.c
    21         gcc -c -o$@ -Zomf -I$(INC) $< 
    2213
    2314imgconv.exe:    imgconv.c $(OBJECTS)
     15        cmd /C $(TOOLDIR)\create_MMPROG_def.cmd imgconv.def
    2416#Use this command to link dynamicaly
    25 #       gcc $(CPPFLAGS) -I$(INC) imgconv.c $(OBJECTS) -Zmtd -los2me imgconv.def
    26         gcc $(CPPFLAGS) -I$(INC) imgconv.c $(OBJECTS) -los2me imgconv.def
     17        $(CC) $(CPPFLAGS) -I$(INC) imgconv.c $(OBJECTS) -los2me imgconv.def
    2718
    2819clean:
    2920        -rm *.exe
     21        -rm *.dll
    3022        -rm *.obj
     23        -rm *.res
     24        -rm *.ini
    3125
    3226cleaner:
     
    3428        -rm *.flc
    3529
     30
    3631distribution:
    37        
    38 
Note: See TracChangeset for help on using the changeset viewer.