/alps/ipecamera

To get this branch, use:
bzr branch http://darksoft.org/webbzr/alps/ipecamera

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Suren A. Chilingaryan
  • Date: 2011-04-12 00:57:02 UTC
  • Revision ID: csa@dside.dyndns.org-20110412005702-ir1cch0f1feop7ay
Infrastructure for event API

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
###############################################################
15
15
# Target definitions
16
16
 
17
 
OBJECTS = pci.o ipecamera.o default.o tools.o
 
17
OBJECTS = pci.o  default.o tools.o ipecamera/model.o ipecamera/image.o
18
18
 
19
19
libpcilib.so: $(OBJECTS)
20
20
        echo -e "LD \t$@"
26
26
 
27
27
install: pci
28
28
        install -m 644 pcilib.h $(DESTDIR)/include
 
29
        install -m 644 ipecamera/ipecamera.h $(DESTDIR)/include
29
30
        if [ -d $(DESTDIR)/lib64 ]; then install -m 755 libpcilib.so $(DESTDIR)/lib64; else install -m 755 libpcilib.so $(DESTDIR)/lib; fi
30
31
        install -m 755 pci $(DESTDIR)/bin
31
32
        ldconfig