# Adjust this to your personal settings.
# Tested on gcc4.3, glibc2, Ubuntu 10.04

C=gcc
INCLPATH=-I/home/bbs/include -I.
LIBPATH=-L/home/bbs/lib -L.
SOMEFLAGS=-ldd

all:	mlist

mlist: mlist.c
	$(C) -o $@ $< $(INCLPATH) $(LIBPATH) $(SOMEFLAGS)
