Makefile: add SCRIPTS for non-compiled scripts.
[assignment-template.git] / Makefile
index 198c02ef520d784472a9a40ea6a074af29f99164..2316c1de81acecd0c13ae45147f08d3982b4a398 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -25,12 +25,13 @@ PACKAGE = hw0
 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.