#
# 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

.IF $(PB_SDK)
OBJ_LIST  := __assert.c __scanf.c
.ELSE
OBJ_LIST  := __conio.c
.END

# MSC has no support for response files, so we do separate compile

.IF $(MICROSOFT_C)
all: $(OBJ_LIST:s/.c/.obj/)
.ELSE
all:
	$(CC) $(CFLAGS) @$(mktmp $(OBJ_LIST))
.END
	$(MV) *.obj $(OBJ_DIR)

