Bug 72185 - another syntax variation in makefile targets
Summary: another syntax variation in makefile targets
Status: RESOLVED FIXED
Alias: None
Product: kdevelop
Classification: Applications
Component: Build tools: Custom Makefiles (show other bugs)
Version: git master
Platform: unspecified Linux
: NOR normal
Target Milestone: ---
Assignee: KDevelop Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-01-08 20:54 UTC by Jon Smirl
Modified: 2004-12-16 23:20 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***.