mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
add new gain_analysis convenience library
This commit is contained in:
23
src/share/gain_analysis/Makefile.vc
Normal file
23
src/share/gain_analysis/Makefile.vc
Normal file
@@ -0,0 +1,23 @@
|
||||
!include <win32.mak>
|
||||
|
||||
!IFDEF DEBUG
|
||||
.c.obj:
|
||||
$(cc) /D "_LIB" -DFLAC__NO_DLL /GX $(cdebug) $(cflags) /I "..\..\..\include" /I "..\..\..\include\share" -DSTRICT -YX /Od /D "_DEBUG" $<
|
||||
!else
|
||||
.c.obj:
|
||||
$(cc) /D "_LIB" -DFLAC__NO_DLL /O2 $(crelease) $(cflags) /I "..\..\..\include" /I "..\..\..\include\share" -DSTRICT -YX -DNODEBUG $<
|
||||
!endif
|
||||
|
||||
C_FILES= \
|
||||
gain_analysis.c \
|
||||
|
||||
OBJS= $(C_FILES:.c=.obj)
|
||||
|
||||
all: gain_analysis.lib
|
||||
|
||||
gain_analysis.lib: $(OBJS)
|
||||
link.exe -lib /nodefaultlib -out:../../../obj/lib/$*.lib $(OBJS)
|
||||
|
||||
clean:
|
||||
-del *.obj *.pch
|
||||
-del ..\..\..\obj\lib\gain_analysis.lib ..\..\..\obj\lib\gain_analysis.pdb
|
||||
Reference in New Issue
Block a user