OUTPUT=la36

plan.txt: plan.mss title.mss general_description.mss system_calls.mss \
			implementation.mss
	scribe plan.mss/$(OUTPUT)

# For editting parts of the document
general_description.txt: general_description.mss 
	scribe general_description.mss/$(OUTPUT)

system_calls.txt: system_calls.mss 
	scribe system_calls.mss/$(OUTPUT)

implementation.txt: implementation.mss 
	scribe implementation.mss/$(OUTPUT)

# All of these sections include tabs which want to be converted to 4
# spaces

general_description.mss: general_description 
	expand -4 general_description > general_description.mss

system_calls.mss: system_calls 
	expand -4 system_calls > system_calls.mss

implementation.mss: implementation 
	expand -4 implementation > implementation.mss
