Skip to content
Snippets Groups Projects
Makefile.am 600 B
Newer Older
  • Learn to ignore specific revisions
  • ## Process this file with automake to produce Makefile.in
    
    AUTOMAKE_OPTIONS = 1.4 foreign
    
    # A list of all the files in the current directory which can be regenerated
    MAINTAINERCLEANFILES = Makefile.in feh.spec
    
    LDFLAGS           = -L/usr/X11R6/lib -L/usr/lib -L/usr/local/lib
    INCLUDES          = -I/usr/X11R6/include \
    $(X_CFLAGS) -I$(prefix)/include -I$(includedir) -I.
    
    man_MANS = feh.1
    
    docs_DATA = README AUTHORS ChangeLog TODO
    docsdir = $(prefix)/doc/feh
    
    EXTRA_DIST = \
    feh.spec feh.1 $(docs_DATA)
    
    SUBDIRS = src cam
    
    test:
    	(cd src && $(MAKE) test)
    
    testclean:
    	(cd src && $(MAKE) testclean)