blob: 38128aed3160de972b7179e2d91abb81dd9e81e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#Makefile.am for WordExtract project
#Process this file with automake to produce Makefile.in
wordextractdir = ../
wordextract_PROGRAMS = wordextract
wordextract_SOURCES = \
main.c main.h \
word.c word.h \
dict.c dict.h \
mainwin.c mainwin.h \
dictwin.c dictwin.h \
confwin.c confwin.h \
engparser.c engparser.h \
srt.c srt.h
AM_CFLAGS = @GTK_CFLAGS@
wordextract_LDADD = @GTK_LIBS@
|