Dear Antonio and friends...
When I compile my file .c, this error occurs:
Borland C++ 5.5.1 for Win32 Copyright (C) 1993, 2000 Borland
Error E2266: No file names given
What's is it!?
HBMAKE error!
HBMAKE error!
Peace and lighting!
Júlio César M. Ferreira
FWH 8.10 / xHB 1.1.0 / xDevStudio 0.72 / Pelles C 5.0.1 / SQLLIB 1.9
Júlio César M. Ferreira
FWH 8.10 / xHB 1.1.0 / xDevStudio 0.72 / Pelles C 5.0.1 / SQLLIB 1.9
-
- Posts: 1
- Joined: Mon Aug 31, 2009 6:28 pm
Re: HBMAKE error!
Você deve está quebrando a linha do script em mais de uma. Você deve alterar seu script onde está definido os fontes .c em uma única linha
Exemplo: CFILES = $(FUNCOESC)\bpaint.c $(FUNCOESC)\Drives.c $(FUNCOESC)\getbtn.c //
$(FUNCOESC)\wndRows.c $(FUNCOESC)\FileVersion.c $(CF)
Esta é a forma correta:
CFILES = $(FUNCOESC)\bpaint.c $(FUNCOESC)\Drives.c $(FUNCOESC)\getbtn.c $(FUNCOESC)\wndRows.c $(FUNCOESC)\FileVersion.c $(CF)
Exemplo: CFILES = $(FUNCOESC)\bpaint.c $(FUNCOESC)\Drives.c $(FUNCOESC)\getbtn.c //
$(FUNCOESC)\wndRows.c $(FUNCOESC)\FileVersion.c $(CF)
Esta é a forma correta:
CFILES = $(FUNCOESC)\bpaint.c $(FUNCOESC)\Drives.c $(FUNCOESC)\getbtn.c $(FUNCOESC)\wndRows.c $(FUNCOESC)\FileVersion.c $(CF)