#
# Makefile for set_density
#

# compile options
CFLAGS = -m486 -O2

# link options
LDFLAGS = -N -s

# compile command
CC = gcc -Wall

PROGS = set_density

all: $(PROGS)

clean:
	rm -f a.out core *~ *.o

cleanld:
	rm -f $(PROGS)

distclean: clean cleanld


set_density: set_density.o