Quien me puede decir que esta mal en mi .mak...no me deja crear un .exe si agrego un archivo .c
Code: Select all
#Borland make sample, (c) FiveTech Software 2005-2009
HBDIR=..\..\harbour32
BCDIR=..\..\bcc73
FWDIR=..\..\fwh1705
.path.obj = .\obj
.path.prg = .\prg
.path.ch = $(FWDIR)\include;$(HBDIR)\include
.path.C = .\C
.path.rc = .\
#important: Use Uppercase for filenames extensions, in the next two rules!
PRG = \
.\one.prg \
.\two.prg \
.\three.prg \
C = \
.\BPaint.c \
OBJ=$(C:.C=.OBJ)
OBJ=$(PRG:.prg=.obj)
OBJS=$(OBJ:.\=.\obj\)
PROJECT :fiducia.exe
fiducia.exe : $(OBJS)
echo off
echo $(BCDIR)\lib\c0w32.obj + > b32.bc
echo $(OBJS), + >> b32.bc
Gracias de antemano