blob: 913022718df20a018109a1a72e90c275c2627a50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#-------------------------------------------------------------------------
#
# Makefile--
# Makefile for port/beos
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/backend/port/beos/Attic/Makefile,v 1.3 2003/04/24 17:16:13 momjian Exp $
#
#-------------------------------------------------------------------------
subdir = src/backend/port/beos
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
OBJS = sem.o shm.o support.o
all: SUBSYS.o
SUBSYS.o: $(OBJS)
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
depend dep:
$(CC) -MM $(CFLAGS) $(CPPFLAGS) *.c >depend
clean:
rm -f SUBSYS.o $(OBJS)
ifeq (depend,$(wildcard depend))
include depend
endif
|