#
# 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 := dosver.c drives.c isshare.c tslice.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)
