forked from Imagelibrary/rtems
20 lines
309 B
Makefile
20 lines
309 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
AUTOMAKE_OPTIONS = foreign 1.4 no-installman
|
|
ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
|
|
|
|
noinst_PROGRAMS = shgen
|
|
|
|
shgen_SOURCES = sci.h sci.c shgen.c
|
|
|
|
if HELP2MAN
|
|
man_MANS = shgen.1
|
|
|
|
shgen.1: $(srcdir)/shgen.c
|
|
$(HELP2MAN) -N shgen >$@
|
|
endif
|
|
|
|
include $(top_srcdir)/../../../automake/host.am
|