]> granicus.if.org Git - postgresql/blob - src/backend/port/beos/Makefile
92e11253d14cbc35172f5af2cbf9286bd10a4a43
[postgresql] / src / backend / port / beos / Makefile
1 #-------------------------------------------------------------------------
2 #
3 # Makefile--
4 #    Makefile for port/beos
5 #
6 #-------------------------------------------------------------------------
7
8 top_builddir = ../../../..
9 include ../../../Makefile.global
10
11 INCLUDE_OPT = 
12
13 CFLAGS+=$(INCLUDE_OPT)
14
15 OBJS = sem.o shm.o support.o
16
17 all: SUBSYS.o 
18
19 SUBSYS.o: $(OBJS)
20         $(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)
21
22 depend dep:
23         $(CC) -MM $(INCLUDE_OPT) *.c >depend
24
25 clean: 
26         rm -f SUBSYS.o $(OBJS) 
27
28 ifeq (depend,$(wildcard depend))
29 include depend
30 endif
31