#
# 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  := bsearch.c crc32.c date.c fail.c gdllist.c \
			 getopt.c grep.c memdbg.c qsort.c stdini.c \
			 timer.c whatis.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)
