# Macros:

CC=bcc
CFLAGS=
RM=del


# Build targets:

all: foo.exe

foo.exe: foo.obj getopt_l.obj
	$(CC) $(CFLAGS) foo.obj getopt_l.obj


# Clean up:

clean realclean:
	-$(RM) *.obj

distclean: realclean
	-$(RM) *.exe
