Commit 012779ca0c025b47756a0245a172ed220c129a52

Authored by Perry Werneck
1 parent 9b2e2872
Exists in master

Updating package info.

Showing 2 changed files with 32 additions and 1 deletions   Show diff stats
Makefile.in
... ... @@ -78,6 +78,37 @@ $(BINDBG)/%.exe: \
78 78  
79 79 @$(VBNC) -reference:$(BINDBG)/$(LIBNAME) -debug -out:$@ $<
80 80  
  81 +install-%: \
  82 + src/%/Makefile \
  83 + all
  84 +
  85 + @make -C `dirname $<` DESTDIR=$(DESTDIR) install
  86 +
  87 +#---[ Release Targets ]------------------------------------------------------------------
  88 +
  89 +all: \
  90 + $(BINRLS)/$(LIBNAME)
  91 +
  92 +Release: \
  93 + $(BINRLS)/$(LIBNAME)
  94 +
  95 +
  96 +$(BINRLS)/$(GLUELIB): \
  97 + src/native/* \
  98 + src/native/core/*
  99 +
  100 + @make -C src/native $@
  101 +
  102 +$(BINRLS)/$(LIBNAME): \
  103 + $(BINRLS)/$(GLUELIB) \
  104 + src/core/*
  105 +
  106 + @make -C src/core $@
  107 +
  108 +install: \
  109 + install-native \
  110 + install-core
  111 +
81 112 #---[ Debug Targets ]--------------------------------------------------------------------
82 113  
83 114 Debug: \
... ...
src/core/tn3270-sharp.pc.in
... ... @@ -5,7 +5,7 @@ gapidir=${prefix}/share/tn3270-sharp-@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERS
5 5  
6 6  
7 7 Name: tn3270-sharp
8   -Description: .BET Bindings for pw3270
  8 +Description: .NET Bindings for pw3270
9 9 Version: @PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@
10 10 Cflags: -I:${gapidir}/tn3270-sharp.xml
11 11 Libs: -r:${libdir}/mono/tn3270-sharp-@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@/tn3270-sharp.dll
... ...