"Richard A. Cini" wrote:
# Executable
db.exe: $(OBJ1)
link @db.lnk
put this target (db.exe) *before* the "# asm sources" obj targets.
it's taking the first target as the default.
you could also say "make db.exe" and it should build everything.
I generally make the first target something like:
all: db.exe
and then the order does not matter.
-brad