Hey guys im trying to compile multiple .c source files with .h files
i keep gettin an error using a makefile in unix
"fatal error in reader: makefile, line 17: unexpexted end of line seen" i have no idea what im doin wrong could someone help troubleshoot
Code:all: ts.o ts_utility.o ts_options.o
gcc -o ts ts.o ts_utility.o ts_options.o
main.o: ts.c ts.h
gcc -Wall -ansi -pedantic -c ts.c
options.o ts_options.c ts_options.h
gcc -Wall -ansi -pedantic -c ts_options.c
util.o ts_utility.c ts_utility.h
gcc -Wall -ansi -pedantic -c ts_utility.c
