all: app textref sep 

app: app.c
	cc app.c -g -o app

textref: textref.c
	cc textref.c -g -static -o textref

sep: separate_sections.c
	cc separate_sections.c -g -o sep

install: sep textref app
	cp sep $$HOME/bin
	cp app $$HOME/bin
	cp textref $$HOME/bin

allgre:
	cd ../tex2asc; sh ../hacks/foo.sh
