#
# Makefile for a simple application.
#
FMS_TOP = ..
include $(FMS_TOP)/build/makedefs.mk

# explicitly list source files
SRCS = main.cc blah.c

# tell FMS that we want all SRCS to be built into an executable
FMS_BUILD_APP = app_one


#
# rules start here
#
include $(FMS_TOP)/build/makerules.mk

# build
here: $(FMS_BUILD_APP)

# install
install-here:
	@echo "   Copying $(FMS_BUILD_APP) to $(FMS_DIST_BINDIR)"
	@$(CPIFNEW) $(FMS_OBJDIR)/$(FMS_BUILD_APP) $(FMS_DIST_BINDIR)

