#------------------------------------------------------------------------- # # Makefile-- # Makefile for port/qnx4 # # IDENTIFICATION # $Header: /cvsroot/pgsql/src/backend/port/qnx4/Attic/Makefile,v 1.5 2003/05/09 16:26:29 momjian Exp $ # #------------------------------------------------------------------------- subdir = src/backend/port/qnx4 top_builddir = ../../../.. include $(top_builddir)/src/Makefile.global OBJS = isnan.o sem.o shm.o all: SUBSYS.o tstsem tstshm SUBSYS.o: $(OBJS) $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS) tstsem: tstsem.o sem.o $(CC) -o tstsem sem.o tstsem.o tstshm: tstshm.o shm.o $(CC) -o tstshm shm.o tstshm.o depend dep: $(CC) -MM $(CFLAGS) *.c >depend clean: rm -f SUBSYS.o $(OBJS) tstsem tstsem.o tstshm tstshm.o ifeq (depend,$(wildcard depend)) include depend endif