comparison postproc/Makefile @ 8098:2fa1e3aa518a

fixing dependancies removing stray tabs
author michael
date Mon, 04 Nov 2002 10:01:15 +0000
parents 458992506962
children dff74a42db56
comparison
equal deleted inserted replaced
8097:440dd85936d1 8098:2fa1e3aa518a
36 rm -f Makefile.bak *.o *.a *~ *.so .depend 36 rm -f Makefile.bak *.o *.a *~ *.so .depend
37 37
38 dep: depend 38 dep: depend
39 39
40 depend: 40 depend:
41 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend 41 $(CC) -MM $(CFLAGS) $(SWSSRCS) postprocess.c 1>.depend
42 42
43 cs_test: $(CS_TEST_OBJS) 43 cs_test: $(CS_TEST_OBJS)
44 $(CC) $(CS_TEST_OBJS) -o cs_test 44 $(CC) $(CS_TEST_OBJS) -o cs_test
45 45
46 ifeq ($(SHARED_PP),yes) 46 ifeq ($(SHARED_PP),yes)
49 49
50 $(SPPLIB): $(SPPOBJS) 50 $(SPPLIB): $(SPPOBJS)
51 $(CC) -shared -Wl,-soname,$(SPPLIB).0 \ 51 $(CC) -shared -Wl,-soname,$(SPPLIB).0 \
52 -o $(SPPLIB) $(SPPOBJS) 52 -o $(SPPLIB) $(SPPOBJS)
53 endif 53 endif
54 54
55 $(PPLIB): $(PPOBJS) 55 $(PPLIB): $(PPOBJS)
56 $(AR) r $(PPLIB) $(PPOBJS) 56 $(AR) r $(PPLIB) $(PPOBJS)
57 57
58 install: all 58 install: all
59 ifeq ($(SHARED_PP),yes) 59 ifeq ($(SHARED_PP),yes)
63 ldconfig || true 63 ldconfig || true
64 mkdir -p $(prefix)/include/postproc 64 mkdir -p $(prefix)/include/postproc
65 install -m 644 postprocess.h $(prefix)/include/postproc/postprocess.h 65 install -m 644 postprocess.h $(prefix)/include/postproc/postprocess.h
66 endif 66 endif
67 67
68 68
69 # 69 #
70 # include dependency files if they exist 70 # include dependency files if they exist
71 # 71 #
72 ifneq ($(wildcard .depend),) 72 ifneq ($(wildcard .depend),)
73 include .depend 73 include .depend