Makefile: add SCRIPTS for non-compiled scripts.
authorW. Trevor King <wking@tremily.us>
Fri, 12 Oct 2012 18:44:25 +0000 (14:44 -0400)
committerW. Trevor King <wking@tremily.us>
Fri, 12 Oct 2012 18:51:20 +0000 (14:51 -0400)
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.

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.