Bug 72185

Summary: another syntax variation in makefile targets
Product: [Applications] kdevelop Reporter: Jon Smirl <jonsmirl>
Component: Build tools: Custom MakefilesAssignee: KDevelop Developers <kdevelop-devel>
Status: RESOLVED FIXED    
Severity: normal    
Priority: NOR    
Version: git master   
Target Milestone: ---   
Platform: unspecified   
OS: Linux   
Latest Commit: Version Fixed In:

Description Jon Smirl 2004-01-08 20:54:23 UTC
Version:           CVS (using KDE Devel)

Seems that spaces are legal before the colon. Targets with spaces don't get picked up for the menu. clean: does get regonized.


CFLAGS=-g -I/usr/include -I../../include/ -O0 -Wall
CC=gcc
SRCS = main.c io.c int.c pci.c
OBJS = main.o io.o int.o pci.o

all :  vbios.vm86

main.o : main.c v86bios.h debug.h
io.o : v86bios.h debug.h
mem.o : mem.c debug.h v86bios.h
int.o : int.c v86bios.h debug.h
pci.o : pci.c pci.h debug.h
console.o : console.c v86bios.h
v86.o : v86.c debug.h

vbios.vm86 : main.o v86.o io.o int.o pci.o console.o
	gcc -g -o vbios.vm86 main.o v86.o io.o int.o pci.o console.o -lc 

clean:
	rm -f *.o vbios.vm86
Comment 1 Jens Dagerbo 2004-01-08 21:04:05 UTC
Hmm.. customproject, right?
Comment 2 Jon Smirl 2004-01-08 21:08:00 UTC
yes, custom
Comment 3 Amilcar do Carmo Lucas 2004-01-08 21:31:27 UTC
Jon I gave you permissions to change the bugs proprieties.
Next time you file in a bug you can change all aspects of it :)
Comment 4 Alexander Neundorf 2004-12-16 23:20:07 UTC
*** Bug has been marked as fixed ***.