Changeset 198 for trunk/classes/mm-progs


Ignore:
Timestamp:
Nov 25, 2024, 10:20:29 PM (9 months ago)
Author:
gyoung
Message:

Make PMPRINTF selectable

Location:
trunk/classes/mm-progs/audioconverter
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/mm-progs/audioconverter/audconv.c

    r145 r198  
    5050
    5151#include "sys_funcs.h"
     52
     53#if 0
     54#define  _PMPRINTF_
     55#include "U:/PMPRINTF/PMPRINTF.H"
     56#endif
    5257
    5358#define MSG_CONVERTDONE    1L
  • trunk/classes/mm-progs/audioconverter/makefile

    r148 r198  
    77                $(LIBDIR)/progbars.obj \
    88                $(LIBDIR)/sys_funcs.obj
     9               
     10PMPRINTF = 0
     11ifdef PMPRINTF
     12LIBS           = mmpm2.lib u:/pmprintf/pmprintf.lib
     13else
     14LIBS           = mmpm2.lib
     15endif           
    916
    1017include ../mmprog.inc
     
    1623audconv.exe:    audconv.c $(OBJECTS) makefile def.tpl
    1724        cmd /C $(TOOLDIR)/create_def.cmd audconv.def
    18         $(CC) $(CPPFLAGS) -I$(INC) audconv.c $(OBJECTS) mmpm2.lib audconv.def
     25        $(CC) $(CPPFLAGS) -I$(INC) audconv.c $(OBJECTS) $(LIBS) audconv.def
    1926
    2027
Note: See TracChangeset for help on using the changeset viewer.