1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-16 15:02:33 +03:00

Major screwed up s_lock patches...need to be fixed...

This commit is contained in:
Marc G. Fournier
1998-05-04 15:45:03 +00:00
parent f8b4a25fd7
commit 1d36bdcfa6
3 changed files with 324 additions and 59 deletions

View File

@@ -4,7 +4,7 @@
# Makefile for storage/buffer
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/storage/buffer/Makefile,v 1.8 1998/04/29 12:37:51 scrappy Exp $
# $Header: /cvsroot/pgsql/src/backend/storage/buffer/Makefile,v 1.9 1998/05/04 15:44:39 scrappy Exp $
#
#-------------------------------------------------------------------------
@@ -24,11 +24,11 @@ depend dep:
$(CC) -MM $(CFLAGS) *.c >depend
clean:
rm -f SUBSYS.o $(OBJS) tas_test
rm -f SUBSYS.o $(OBJS) s_lock_test
tas_test: s_lock.c
$(CC) $(CFLAGS) -DTAS_TEST=1 -g s_lock.c -o tas_test
./tas_test
s_lock_test: s_lock.c
$(CC) $(CFLAGS) -DS_LOCK_TEST=1 -g s_lock.c -o s_lock_test
./s_lock_test
ifeq (depend,$(wildcard depend))
include depend