Changeset 7

Show
Ignore:
Timestamp:
04/12/07 13:36:15 (2 years ago)
Author:
bwilliams
Message:

patching makefiles

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
    • Property svn:ignore set to

      .project
  • branches/binary-mq/libsipc/Makefile

    r5 r7  
    11# Subdirectories which contain targets 
    2 SUBDIRS=src tests examples bindings 
     2SUBDIRS=src tests examples bindings/java 
    33 
    44# Installation directories 
     
    3434        $(MAKE) -C man install 
    3535        $(MAKE) -C examples install 
    36       $(MAKE) -C bindings install 
     36#     $(MAKE) -C bindings install 
    3737 
    3838install-policy: 
  • branches/binary-mq/libsipc/bindings/java/Makefile

    r4 r7  
    1010        install -m 644 examples/* $(INSTDIR)/examples 
    1111        install -m 644 sipc_java_wrapper/* $(INSTDIR)/sipc_java_wrapper 
    12         cp -a sipc_java $(INSTDIR) 
     12        cp -a com $(INSTDIR) 
    1313 
    1414javadoc: 
  • branches/binary-mq/libsipc/bindings/java/examples/Makefile

    r4 r7  
    11FILES=$(wildcard *.java) 
    22CLASSES=$(FILES:.java=.class) 
    3 CLASSPATH=./:.. 
    4 JFLAGS=-cp $(CLASSPATH) -1.5 
    5 ifeq ($(DEBUG),1) 
    6         JFLAGS+=-warn:+null 
    7 endif 
     3CLASSPATH=.:.. 
     4 
     5# uncomment this region for gcj 
     6# JFLAGS=-cp $(CLASSPATH) -1.5 
     7# ifeq ($(DEBUG),1) 
     8#       JFLAGS+=-warn:+null 
     9# endif 
     10 
     11# use this region for sun's java 
     12JFLAGS=-cp $(CLASSPATH) -source 1.5 
    813 
    914SIPC_KEYS=sipc_mq_key sipc_shm_key 
  • branches/binary-mq/libsipc/bindings/java/sipc_java_wrapper/Makefile.example

    r4 r7  
    1111#               of the library search path. 
    1212 
    13 JNI_CFLAGS=-I/usr/lib/jvm/java/include -I/usr/lib/jvm/java/include/linux 
     13#JNI_CFLAGS=-I/usr/lib/jvm/java/include -I/usr/lib/jvm/java/include/linux 
     14JNI_CFLAGS=-I$(JAVA_HOME)/include -I$(JAVA_HOME)/include/linux 
    1415SIPC_CFLAGS= 
    1516SIPC_LDFLAGS= 
  • branches/binary-mq/libsipc/examples/policy/Makefile

    r4 r7  
    6060 
    6161clean: 
    62         @$(MAKE) -f /usr/share/selinux/devel/include/Makefile clean 
     62        @if [ -f /usr/share/selinux/devel/include/Makefile ]; then \ 
     63                @$(MAKE) -f /usr/share/selinux/devel/include/Makefile clean; \ 
     64        fi 
    6365 
    6466.PHONY: setup install clean remove-policy install-policy 
  • branches/binary-mq/libsipc/tests/Makefile

    r4 r7  
    66 
    77test_ipc: test_ipc.c shm.h shm.c mqueue.h mqueue.c 
    8         $(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@ 
     8        $(CC) $(CFLAGS) $^ $(LDFLAGS) -o $@ 
    99 
    1010ipc_creator: ipc_creator.c