Chameleon

Chameleon Commit Details

Date:2011-09-04 23:37:11 (12 years 7 months ago)
Author:JrCs
Commit:1502
Parents: 1501
Message:Use $CURDIR rather than spawning a shell to get current directory
Changes:
D/trunk/i386/MakePaths.dir
M/trunk/Makefile
M/trunk/Chameleon.xcodeproj/project.pbxproj
M/trunk/i386/cdboot/Makefile
M/trunk/i386/libsa/Makefile
M/trunk/i386/util/Makefile
M/trunk/i386/Makefile
M/trunk/i386/libsaio/Makefile
M/trunk/i386/boot0/Makefile
M/trunk/i386/boot1/Makefile
M/trunk/i386/boot2/Makefile

File differences

trunk/Chameleon.xcodeproj/project.pbxproj
649649
650650
651651
652
652653
653654
654655
......
780781
781782
782783
783
784784
785785
786786
......
933933
934934
935935
936
936937
937938
938939
......
20502051
20512052
20522053
2053
20542054
20552055
20562056
6DBAFFC313B0D4590047ED33 /* ufsmount.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ufsmount.h; sourceTree = "<group>"; };
6DBAFFC413B0D4590047ED33 /* unistd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unistd.h; sourceTree = "<group>"; };
6DBAFFC513B0D4590047ED33 /* unwind.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = unwind.h; sourceTree = "<group>"; };
A360AA7D14136C1A00084D3F /* Make.rules */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Make.rules; sourceTree = "<group>"; };
B0056CE711F3868000754B65 /* boot0.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = boot0.s; sourceTree = "<group>"; };
B0056CE811F3868000754B65 /* chain0.s */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.asm; path = chain0.s; sourceTree = "<group>"; };
B0056CE911F3868000754B65 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
B0056D7411F3868000754B65 /* xml.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = xml.c; sourceTree = "<group>"; };
B0056D7511F3868000754B65 /* xml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = xml.h; sourceTree = "<group>"; };
B0056D7611F3868000754B65 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
B0056D7811F3868000754B65 /* MakePaths.dir */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = MakePaths.dir; sourceTree = "<group>"; };
B0056D7A11F3868000754B65 /* machOconv.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = machOconv.c; sourceTree = "<group>"; };
B0056D7B11F3868000754B65 /* Makefile */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.make; path = Makefile; sourceTree = "<group>"; };
B0056D7C11F3868000754B65 /* TODO */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TODO; sourceTree = "<group>"; };
019DFBAF11FB94090013E8CC /* MEMTEST86_LICENSE */,
B0056D7C11F3868000754B65 /* TODO */,
B0056D7D11F3868000754B65 /* Makefile */,
A360AA7D14136C1A00084D3F /* Make.rules */,
B0056D8011F3868000754B65 /* coding_standards.txt */,
);
name = Chameleon;
B0056D2411F3868000754B65 /* libsaio */,
B0056D7911F3868000754B65 /* util */,
B0056D7611F3868000754B65 /* Makefile */,
B0056D7811F3868000754B65 /* MakePaths.dir */,
);
path = i386;
sourceTree = "<group>";
trunk/i386/MakePaths.dir
1
2
3
4
5
6
7
8
9
#
# Default paths for subdirectories.
#
OBJROOT=../../obj/i386/$(DIR)
SYMROOT=../../sym/i386
DSTROOT=../../dst/i386
SRCROOT=/tmp
trunk/i386/libsaio/Makefile
1
1
22
33
44
SRCROOT = $(shell pwd)/../../
SRCROOT = $(CURDIR)/../../
OBJROOT = $(SRCROOT)/obj/i386/libsaio
SYMROOT = $(SRCROOT)/sym/i386
DSTROOT = $(SRCROOT)/dst/i386
trunk/i386/boot0/Makefile
1
1
22
33
44
SRCROOT = $(shell pwd)/../../
SRCROOT = $(CURDIR)/../../
OBJROOT = $(SRCROOT)/obj/i386/boot0
SYMROOT = $(SRCROOT)/sym/i386
DSTROOT = $(SRCROOT)/dst/i386
trunk/i386/boot1/Makefile
1
1
22
33
44
SRCROOT = $(shell pwd)/../../
SRCROOT = $(CURDIR)/../../
OBJROOT = $(SRCROOT)/obj/i386/boot1
SYMROOT = $(SRCROOT)/sym/i386
DSTROOT = $(SRCROOT)/dst/i386
trunk/i386/boot2/Makefile
1
1
22
33
44
SRCROOT = $(shell pwd)/../../
SRCROOT = $(CURDIR)/../../
OBJROOT = $(SRCROOT)/obj/i386/boot2
SYMROOT = $(SRCROOT)/sym/i386
DSTROOT = $(SRCROOT)/dst/i386
trunk/i386/cdboot/Makefile
1
1
22
33
44
SRCROOT = $(shell pwd)/../../
SRCROOT = $(CURDIR)/../../
OBJROOT = $(SRCROOT)/obj/i386/cdboot
SYMROOT = $(SRCROOT)/sym/i386
DSTROOT = $(SRCROOT)/dst/i386
trunk/i386/libsa/Makefile
1
1
22
33
44
SRCROOT = $(shell pwd)/../../
SRCROOT = $(CURDIR)/../../
OBJROOT = $(SRCROOT)/obj/i386/libsa
SYMROOT = $(SRCROOT)/sym/i386
DSTROOT = $(SRCROOT)/dst/i386
trunk/i386/Makefile
33
44
55
6
6
77
88
99
#
# these paths are only valid in subdirectories of this directory
#
SRCROOT = $(shell pwd)/../
SRCROOT = $(CURDIR)/../
OBJROOT = $(SRCROOT)/obj/i386
SYMROOT = $(SRCROOT)/sym/i386
DSTROOT = $(SRCROOT)/dst/i386
trunk/i386/util/Makefile
33
44
55
6
6
77
88
99
# we'll just keep the generated files in this directory
# and install them directly, rather than generating them again.
#
SRCROOT = $(shell pwd)/../../
SRCROOT = $(CURDIR)/../../
OBJROOT = $(SRCROOT)/obj/i386/util
SYMROOT = $(SRCROOT)/sym/i386
DSTROOT = $(SRCROOT)/dst/i386
trunk/Makefile
11
2
2
33
44
55
#Makefile for kernel booter
SRCROOT = $(shell pwd)
SRCROOT = $(CURDIR)
OBJROOT = $(SRCROOT)/obj
SYMROOT = $(SRCROOT)/sym
DSTROOT = $(SRCROOT)/dst

Archive Download the corresponding diff file

Revision: 1502