############################################### # makefile3: Abbreviations ############################################### all: release debug release: testsymtable debug: testsymtablegdb clobber: clean rm -f *~ \#*\# core clean: rm -f testsymtable testsymtablegdb *.o *.do testsymtable: testsymtable.o symtable.o gcc -o $@ $< symtable.o testsymtablegdb: testsymtable.do symtable.do gcc -o $@ $< symtable.do testsymtable.o: testsymtable.c symtable.h gcc -Wall -ansi -pedantic -c -o $@ $< testsymtable.do: testsymtable.c symtable.h gcc -g -Wall -ansi -pedantic -c -o $@ $< symtable.o: symtable.c symtable.h gcc -Wall -ansi -pedantic -c -o $@ $< symtable.do: symtable.c symtable.h gcc -g -Wall -ansi -pedantic -c -o $@ $<