gtkmm
-
automake & autoconfComputer/linux 2010. 6. 26. 16:40
src/main.cc src/main.cc src/sdecoder.h src/sdecoder.cc $ emacs main.cc& #include int main(int argc, char *argv[]) { Gtk::Main kit(argc, argv); Gtk::Window window; Gtk::Main::run(window); return 0; } $ emacs Makefile.am & AUTOMAKE_OPTIONS = subdir-objects ACLOCAL_AMFLAGS = ${ACLOCAL_FLAGS} AM_CPPFLAGS = $(DEPS_CFLAGS) bin_PROGRAMS = sDecoder sDecoder_SOURCES = src/main.cc src/sdecoder.h src/sdeco..