Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gtk+3 port #42

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
7 changes: 4 additions & 3 deletions julius/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SHELL=/bin/sh
.SUFFIXES:
.SUFFIXES: .c .o
.c.o:
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<
$(CC) $(CFLAGS) $(CPPFLAGS) $(GTK_CFLAGS) -o $@ -c $<

LIBSENT=../libsent
LIBJULIUS=../libjulius
Expand Down Expand Up @@ -47,14 +47,15 @@ output_module.o \
output_stdout.o \
output_file.o \
record.o \
@CCOBJ@
@CCOBJ@ \
@GTKOBJ@

############################################################

all: $(TARGET)

$(TARGET): $(LIBSENT)/libsent.a $(LIBJULIUS)/libjulius.a $(OBJ)
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $(OBJ) $(LDFLAGS) $(GTK_LIBS)
$(CC) $(CFLAGS) $(CPPFLAGS) $(GTK_CFLAGS) -o $@ $(OBJ) $(LDFLAGS) $(GTK_LIBS)

############################################################

Expand Down
6 changes: 6 additions & 0 deletions julius/config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,9 @@

/* Define if you use libjcode */
#undef USE_LIBJCODE

/* Define if you want to enable search space visualization on Gtk+ */
#undef VISUALIZE

/* Define for playing capability*/
#undef PLAYCOMMAND
Loading