Mail Archives: djgpp/1995/05/27/12:11:50
Date: Sat, 27 May 1995 12:29:45 +0100
From: "Juan I. Perez" <jips AT sol DOT unizar DOT es>
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
- Raw text -