Added tools and experiments
This commit is contained in:
BIN
exp/Memory manager/Debug/Memory manager.exe
Normal file
BIN
exp/Memory manager/Debug/Memory manager.exe
Normal file
Binary file not shown.
3
exp/Memory manager/Debug/main.d
Normal file
3
exp/Memory manager/Debug/main.d
Normal file
@ -0,0 +1,3 @@
|
||||
main.d main.o: ../main.c ../mem.h
|
||||
|
||||
../mem.h:
|
BIN
exp/Memory manager/Debug/main.o
Normal file
BIN
exp/Memory manager/Debug/main.o
Normal file
Binary file not shown.
43
exp/Memory manager/Debug/makefile
Normal file
43
exp/Memory manager/Debug/makefile
Normal file
@ -0,0 +1,43 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
-include ../makefile.init
|
||||
|
||||
RM := rm -rf
|
||||
|
||||
# All of the sources participating in the build are defined here
|
||||
-include sources.mk
|
||||
-include subdir.mk
|
||||
-include objects.mk
|
||||
|
||||
ifneq ($(MAKECMDGOALS),clean)
|
||||
ifneq ($(strip $(C_DEPS)),)
|
||||
-include $(C_DEPS)
|
||||
endif
|
||||
endif
|
||||
|
||||
-include ../makefile.defs
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
|
||||
# All Target
|
||||
all: Memory\ manager.exe
|
||||
|
||||
# Tool invocations
|
||||
Memory\ manager.exe: $(OBJS) $(USER_OBJS)
|
||||
@echo 'Building target: $@'
|
||||
@echo 'Invoking: Cygwin C Linker'
|
||||
gcc -o "Memory manager.exe" $(OBJS) $(USER_OBJS) $(LIBS)
|
||||
@echo 'Finished building target: $@'
|
||||
@echo ' '
|
||||
|
||||
# Other Targets
|
||||
clean:
|
||||
-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) "Memory manager.exe"
|
||||
-@echo ' '
|
||||
|
||||
.PHONY: all clean dependents
|
||||
.SECONDARY:
|
||||
|
||||
-include ../makefile.targets
|
3
exp/Memory manager/Debug/memory.d
Normal file
3
exp/Memory manager/Debug/memory.d
Normal file
@ -0,0 +1,3 @@
|
||||
memory.d memory.o: ../memory.c ../mem.h
|
||||
|
||||
../mem.h:
|
BIN
exp/Memory manager/Debug/memory.o
Normal file
BIN
exp/Memory manager/Debug/memory.o
Normal file
Binary file not shown.
8
exp/Memory manager/Debug/objects.mk
Normal file
8
exp/Memory manager/Debug/objects.mk
Normal file
@ -0,0 +1,8 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
USER_OBJS :=
|
||||
|
||||
LIBS :=
|
||||
|
17
exp/Memory manager/Debug/sources.mk
Normal file
17
exp/Memory manager/Debug/sources.mk
Normal file
@ -0,0 +1,17 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
O_SRCS :=
|
||||
C_SRCS :=
|
||||
S_UPPER_SRCS :=
|
||||
OBJ_SRCS :=
|
||||
ASM_SRCS :=
|
||||
OBJS :=
|
||||
C_DEPS :=
|
||||
EXECUTABLES :=
|
||||
|
||||
# Every subdirectory with source files must be described here
|
||||
SUBDIRS := \
|
||||
. \
|
||||
|
27
exp/Memory manager/Debug/subdir.mk
Normal file
27
exp/Memory manager/Debug/subdir.mk
Normal file
@ -0,0 +1,27 @@
|
||||
################################################################################
|
||||
# Automatically-generated file. Do not edit!
|
||||
################################################################################
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../main.c \
|
||||
../memory.c
|
||||
|
||||
OBJS += \
|
||||
./main.o \
|
||||
./memory.o
|
||||
|
||||
C_DEPS += \
|
||||
./main.d \
|
||||
./memory.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
%.o: ../%.c
|
||||
@echo 'Building file: $<'
|
||||
@echo 'Invoking: Cygwin C Compiler'
|
||||
gcc -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
|
||||
@echo 'Finished building: $<'
|
||||
@echo ' '
|
||||
|
||||
|
Reference in New Issue
Block a user