~ubuntu-branches/ubuntu/trusty/liblivemedia/trusty

« back to all changes in this revision

Viewing changes to groupsock/Makefile.tail

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung
  • Date: 2013-05-05 19:49:35 UTC
  • mfrom: (1.4.15) (11.1.9 experimental)
  • Revision ID: package-import@ubuntu.com-20130505194935-pyim0rda30k401ca
Tags: 2013.04.30-1
* Team upload.
* New upstream release.
* Upload to unstable after the Debian 7.0 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
##### End of variables to change
2
2
 
3
 
ALL = libgroupsock.$(LIB_SUFFIX)
 
3
NAME = libgroupsock
 
4
ALL = $(NAME).$(LIB_SUFFIX)
4
5
all:    $(ALL)
5
6
 
6
7
.$(C).$(OBJ):
7
 
        $(C_COMPILER) -c $(C_FLAGS) $<       
8
 
 
 
8
        $(C_COMPILER) -c $(C_FLAGS) $<
9
9
.$(CPP).$(OBJ):
10
10
        $(CPLUSPLUS_COMPILER) -c $(CPLUSPLUS_FLAGS) $<
11
11
 
33
33
clean:
34
34
        -rm -rf *.$(OBJ) $(ALL) core *.core *~ include/*~
35
35
 
 
36
install: install1 $(INSTALL2)
 
37
install1: libgroupsock.$(LIB_SUFFIX)
 
38
          install -d $(DESTDIR)$(PREFIX)/include/groupsock $(DESTDIR)$(LIBDIR)
 
39
          install -m 644 include/*.hh include/*.h $(DESTDIR)$(PREFIX)/include/groupsock
 
40
          install -m 644 libgroupsock.$(LIB_SUFFIX) $(DESTDIR)$(LIBDIR)
 
41
install_shared_libraries: libgroupsock.$(LIB_SUFFIX)
 
42
          ln -s libgroupsock.$(LIB_SUFFIX) $(DESTDIR)$(LIBDIR)/libgroupsock.$(SHORT_LIB_SUFFIX)
 
43
          ln -s libgroupsock.$(LIB_SUFFIX) $(DESTDIR)$(LIBDIR)/libgroupsock.so
 
44
 
36
45
##### Any additional, platform-specific rules come here: