Files
flac/src/share/Makefile.vc

25 lines
512 B
Makefile
Raw Normal View History

2002-06-01 06:29:30 +00:00
!include <win32.mak>
!IFDEF DEBUG
.c.obj:
2002-07-03 07:40:38 +00:00
$(cc) /D "_LIB" /GX $(cdebug) $(cflags) /I "..\..\include" -DSTRICT -YX /Od /D "_DEBUG" $<
2002-06-01 06:29:30 +00:00
!else
.c.obj:
2002-07-03 07:40:38 +00:00
$(cc) /D "_LIB" /O2 $(crelease) $(cflags) /I "..\..\include" -DSTRICT -YX -DNODEBUG $<
2002-06-01 06:29:30 +00:00
!endif
C_FILES= \
getopt.c \
getopt1.c
OBJS= $(C_FILES:.c=.obj)
all: getopt.lib
getopt.lib: $(OBJS)
link.exe -lib /nodefaultlib -out:../../obj/lib/$*.lib $(OBJS)
clean:
-del *.obj *.pch
-del ..\..\obj\lib\getopt.lib ..\..\obj\lib\getopt.pdb