|
Hello all:
I am trying to compile my program with dmalloc, but I just cant get
the makefile to work right. Since I am new with make this is
difficult for me. I installed dmalloc in /bigOne/dmalloc/dmalloc-
5.2.0 and my sample makefile is below. Also I installed dmalloc
according to the instrunctions on the web. Please help! It would be
greatly appreciated!
# This is just a sample makefile.....
# Created on 4/26/2003
CC = gcc
CLIBS = -L/bigOne/dmalloc/dmalloc-5.2.0
CFLAGS = -I/bigOne/dmalloc/dmalloc-5.2.0
project1:
$(CC) $(CFLAGS) llist.c allist.c mainmenu.c main.c -o
LinkedListProgram.exe
$(CLIBS)
clean:
rm *.exe
|