initial import

This commit is contained in:
Josh Coalson
2002-06-01 06:29:30 +00:00
parent a90f80fc9f
commit ba2c1b89fb

24
src/share/Makefile.vc Normal file
View File

@@ -0,0 +1,24 @@
!include <win32.mak>
!IFDEF DEBUG
.c.obj:
$(cc) /D "_LIB" /GX $(cdebug) $(cflags) /I "..\..\include\share" -DSTRICT -YX /Od /D "_DEBUG" $<
!else
.c.obj:
$(cc) /D "_LIB" /O2 $(crelease) $(cflags) /I "..\..\include\share" -DSTRICT -YX -DNODEBUG $<
!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