mirror of
https://github.com/reactos/reactos.git
synced 2024-11-07 07:00:19 +00:00
Delete unused makefiles
svn path=/trunk/; revision=16400
This commit is contained in:
parent
2bdea48b49
commit
d3bf39b1f2
5 changed files with 0 additions and 135 deletions
|
@ -1,52 +0,0 @@
|
|||
all: $(BIN2C) dosmbr.bin fat.bin fat32.bin isoboot.bin ext2.bin
|
||||
|
||||
$(BIN2C) :
|
||||
@$(MAKE) --no-print-directory -C $(FREELDR_TOOLS_PATH)
|
||||
|
||||
dosmbr.bin : dosmbr.asm
|
||||
@echo ===================================================== Assembling dosmbr
|
||||
@$(NASM_CMD) $(NFLAGS) -o dosmbr.bin -f bin dosmbr.asm
|
||||
|
||||
fat.bin : fat.asm $(BIN2C)
|
||||
@echo ===================================================== Assembling fat
|
||||
@$(NASM_CMD) $(NFLAGS) -o fat.bin -f bin fat.asm
|
||||
@$(BIN2C) fat.bin fat.h fat_data
|
||||
|
||||
|
||||
fat32.bin : fat32.asm $(BIN2C)
|
||||
@echo ===================================================== Assembling fat32
|
||||
@$(NASM_CMD) $(NFLAGS) -o fat32.bin -f bin fat32.asm
|
||||
@$(BIN2C) fat32.bin fat32.h fat32_data
|
||||
|
||||
isoboot.bin : isoboot.asm
|
||||
@echo ===================================================== Assembling isoboot
|
||||
@$(NASM_CMD) $(NFLAGS) -o isoboot.bin -f bin isoboot.asm
|
||||
|
||||
ext2.bin : ext2.asm
|
||||
@echo ===================================================== Assembling ext2
|
||||
@$(NASM_CMD) $(NFLAGS) -o ext2.bin -f bin ext2.asm
|
||||
@$(BIN2C) ext2.bin ext2.h ext2_data
|
||||
|
||||
|
||||
.PHONY : bootcd
|
||||
bootcd: bootcd_dirs isoboot.bin
|
||||
$(CP) isoboot.bin $(BOOTCD_DIR)
|
||||
$(CP) dosmbr.bin $(BOOTCD_DIR)/disk/loader
|
||||
$(CP) ext2.bin $(BOOTCD_DIR)/disk/loader
|
||||
$(CP) fat.bin $(BOOTCD_DIR)/disk/loader
|
||||
$(CP) fat32.bin $(BOOTCD_DIR)/disk/loader
|
||||
$(CP) isoboot.bin $(BOOTCD_DIR)/disk/loader
|
||||
|
||||
.PHONY : bootcd_dirs
|
||||
bootcd_dirs:
|
||||
$(MKDIR) $(BOOTCD_DIR)
|
||||
$(MKDIR) $(BOOTCD_DIR)/disk
|
||||
$(MKDIR) $(BOOTCD_DIR)/disk/reactos
|
||||
$(MKDIR) $(BOOTCD_DIR)/disk/install
|
||||
$(MKDIR) $(BOOTCD_DIR)/disk/bootdisk
|
||||
$(MKDIR) $(BOOTCD_DIR)/disk/loader
|
||||
|
||||
clean:
|
||||
@-$(RM) *.bin
|
||||
@-$(RM) *.h
|
||||
@echo Clean ALL done.
|
|
@ -1,35 +0,0 @@
|
|||
TOOLS=$(PATH_TO_TOP)/tools
|
||||
SECTIONS= \
|
||||
--only-section=.text \
|
||||
--only-section=.data \
|
||||
--only-section=.bss
|
||||
LDSECT= -Ttext 0xe00000 -Tdata 0xe10000
|
||||
OBJS=ofwboot.o freeldr.o
|
||||
CFLAGS=-mbig -meabi -fPIC -fno-builtin -I../freeldr/include
|
||||
FREELDR=../freeldr/freeldr.sys
|
||||
|
||||
.SUFFIXES: .c .o
|
||||
|
||||
all: ofwldr
|
||||
|
||||
hack-coff$(EXEEXT):
|
||||
$(HOST_CC) -I../freeldr/include hack-coff.c -o $@
|
||||
|
||||
ofwboot.o: ofwboot.s
|
||||
$(NASM_CMD) $< -c -o $@
|
||||
|
||||
$(FREELDR):
|
||||
$(MAKE) -C ../freeldr
|
||||
|
||||
freeldr.o: $(FREELDR)
|
||||
$(TOOLS)/ppc-le2be $< freeldr.tmp
|
||||
$(OBJCOPY) -I binary -O elf32-powerpc -B powerpc:common freeldr.tmp $@
|
||||
rm freeldr.tmp
|
||||
|
||||
ofwldr: $(OBJS)
|
||||
$(LD) -melf32ppc --no-omagic $(LDSECT) $(OBJS) -g -o $@.elf
|
||||
$(OBJCOPY) $(SECTIONS) -O aixcoff-rs6000 $@.elf $@
|
||||
$(TOOLS)/hack-coff $@
|
||||
|
||||
clean:
|
||||
rm -rf ofwldr *.o *.elf *.tmp
|
|
@ -1,5 +0,0 @@
|
|||
# $Id$
|
||||
|
||||
TARGET_ARCH_OBJECTS = $(ARCH)/framebased.o $(ARCH)/setjmp.o
|
||||
|
||||
# EOF
|
|
@ -1,9 +0,0 @@
|
|||
# $Id$
|
||||
|
||||
THREAD_OBJECTS := \
|
||||
$(THREAD_OBJECTS) \
|
||||
thread/linearstack.o \
|
||||
thread/$(ARCH)/context.o \
|
||||
thread/$(ARCH)/stackexit.o
|
||||
|
||||
# EOF
|
|
@ -1,34 +0,0 @@
|
|||
# $Id$
|
||||
|
||||
|
||||
EXCLUDE_FILTER = \
|
||||
memchr.o \
|
||||
memcpy.o \
|
||||
memmove.o \
|
||||
memset.o \
|
||||
strcat.o \
|
||||
strchr.o \
|
||||
strcmp.o \
|
||||
strcpy.o \
|
||||
strlen.o \
|
||||
strncat.o \
|
||||
strncmp.o \
|
||||
strncpy.o \
|
||||
strrchr.o \
|
||||
strnlen.o \
|
||||
wcscat.o \
|
||||
wcschr.o \
|
||||
wcscmp.o \
|
||||
wcscpy.o \
|
||||
wcslen.o \
|
||||
wcsncat.o \
|
||||
wcsncmp.o \
|
||||
wcsncpy.o \
|
||||
wcsnlen.o \
|
||||
wcsrchr.o
|
||||
|
||||
|
||||
OBJECTS_ARCH = $(addprefix i386/, $(EXCLUDE_FILTER))
|
||||
|
||||
|
||||
# EOF
|
Loading…
Reference in a new issue