#
# PB-Lib C/C++ Library Version 0.021
#
# Copyright (C) 1995 by Branislav L. Slantchev
# A product of Silicon Creations, Inc.
#
# See the file "copying.pbl" for licensing information.
#

# List of .OBJ files for this directory

OBJ_LIST := stradd.c strccat.c strcdel.c strcent.c strcins.c strcma.c \
			strcrep.c strcrm.c strdate.c strdel.c strecpy.c strfmpas.c \
			strfupr.c strichr.c stright.c strins.c stristr.c strleft.c \
			strmid.c strnecpy.c strneset.c strrtrm.c strsrep.c strsrm.c \
			strtime.c strtopas.c strtrm.c strtts.c strvcat.c

# MSC has no support for response files, so we do separate compile
.IF $(MICROSOFT_C)
all: $(OBJ_LIST:s/.c/.obj/)
.ELSE
all:
	$(CC) -c $(CFLAGS) @$(mktmp $(OBJ_LIST))
.END
	$(MV) *.obj $(OBJ_DIR)
