From: Morten Welinder Date: Sat, 27 May 1995 17:17:54 +0200 To: jips AT sol DOT unizar DOT es Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: proplot makefile Date: Sat, 27 May 1995 12:29:45 +0100 From: "Juan I. Perez" To: djgpp AT sun DOT soe DOT clarkson DOT edu I'm a new user of djgpp C Compiler, and I,ve found some problems. I'm trying to compile a project with the following makefile: CC = gcc CFLAGS = #-g OFLAGS = -O2 LDFLAGS = -lm -lgrx LDDIRS = -Ic:\c\djgpp\contrib\libgrx\include -Lc:\c\djgpp\contrib\libgrx\lib proplot :proplot.o texto.o tabla.o comando.o objeto.o $(CC) $(OFLAGS) -o proplot proplot.o texto.o tabla.o objeto.o \ comando.o $(LDDIRS) $(LDFLAGS) - * - 1. You need to indent with TABs, not spaces. 2. You should use forward slashes "/" with djgpp. Morten