Makefile issues - fatal error in reader
问题 I am having some issues with a makefile I am creating for a school project. I am compiling and assembling a C file and a SPARC assembly file (respectively) and linking them. I'm working in a Unix environment. Here is the makefile: proj09.exe: proj09.driver.o proj09.support.o <tab>gcc -Wall proj09.driver.o proj09.support.o -o proj09.exe proj09.driver.o: proj09.driver.c /user/cse320/Projects/project09.support.h <tab>gcc -Wall -c proj09.driver.c /user/cse320/Projects/project09.support.h proj09