These scripts will be distributed, but not cleaned up. This is useful
if running your package is too complicated to wedge into the Makefile,
and you want to pull it out into run.sh or whatever.
VERSION = 1
RELEASE = $(COURSE)-$(PACKAGE)-$(VERSION)
RUN_PROGRAM = hello_world
+SCRIPTS =
C_PROGRAMS = hello_world
CXX_PROGRAMS = goodbye_world
PROGRAMS = $(C_PROGRAMS) $(CXX_PROGRAMS)
# Define the source files that will be distributed in the tarball
-SOURCE = *.c *.cpp *.h COPYING Makefile README
+SOURCE = *.c *.cpp *.h COPYING Makefile README $(SCRIPTS)
# Define a list of object files needed to link PROGRAM. We're setting
# things up here so that a program % depends on the object file %.o.