autoconf
-
autoconf with ROOTComputer/linux 2011. 4. 13. 03:59
Makefile.am ACLOCAL_AMFLAGS = -I $ROOTSYS/build/misc AM_CPPFLAGS = $(DEPS_CFLAGS) AM_CFLAGS = $(LAYOUT_CFLAGS) bin_PROGRAMS = template template_SOURCES = main.cxx template_CXXFLAGS = @ROOTCFLAGS@ template_LDADD = -L@ROOTLIBDIR@ @ROOTGLIBS@ @ROOTLIBS@ @LIBS@ ${DEPS_LIBS} configure.ac AC_INIT([template c++], [0.0.1], [jhlee_at_jlab.org], [template], [http://www.jlab.org/~jhlee]) AC_PREREQ(2.59) AM..
-
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..