13 lines
245 B
Makefile
13 lines
245 B
Makefile
|
## Process this file with automake to produce Makefile.in
|
||
|
|
||
|
# No need to install this becuase we are cross-compiling anyway.
|
||
|
noinst_PROGRAMS = gpgme
|
||
|
|
||
|
INCLUDES = -I$(top_srcdir)/jnlib
|
||
|
LDADD = -L ../jnlib -ljnlib
|
||
|
|
||
|
gpgme_SOURCES = main.c main.h
|
||
|
|
||
|
|
||
|
|