[Bug 72185] New: another syntax variation in makefile targets

Jon Smirl jonsmirl at yahoo.com
Thu Jan 8 20:55:08 UTC 2004


------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
      
http://bugs.kde.org/show_bug.cgi?id=72185      
           Summary: another syntax variation in makefile targets
           Product: kdevelop
           Version: CVS
          Platform: unspecified
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: NOR
         Component: general
        AssignedTo: kdevelop-devel at kdevelop.org
        ReportedBy: jonsmirl at yahoo.com


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




More information about the KDevelop-devel mailing list