aboutsummaryrefslogtreecommitdiff
path: root/Debug
diff options
context:
space:
mode:
Diffstat (limited to 'Debug')
-rw-r--r--Debug/makefile43
-rw-r--r--Debug/objects.mk8
-rw-r--r--Debug/sources.mk17
-rw-r--r--Debug/subdir.mk90
4 files changed, 158 insertions, 0 deletions
diff --git a/Debug/makefile b/Debug/makefile
new file mode 100644
index 0000000..fe7eb60
--- /dev/null
+++ b/Debug/makefile
@@ -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: 7w
+
+# Tool invocations
+7w: $(OBJS) $(USER_OBJS)
+ @echo 'Building target: $@'
+ @echo 'Invoking: GCC C Linker'
+ gcc -o "7w" $(OBJS) $(USER_OBJS) $(LIBS)
+ @echo 'Finished building target: $@'
+ @echo ' '
+
+# Other Targets
+clean:
+ -$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) 7w
+ -@echo ' '
+
+.PHONY: all clean dependents
+.SECONDARY:
+
+-include ../makefile.targets
diff --git a/Debug/objects.mk b/Debug/objects.mk
new file mode 100644
index 0000000..54b7836
--- /dev/null
+++ b/Debug/objects.mk
@@ -0,0 +1,8 @@
+################################################################################
+# Automatically-generated file. Do not edit!
+################################################################################
+
+USER_OBJS :=
+
+LIBS := -lncurses
+
diff --git a/Debug/sources.mk b/Debug/sources.mk
new file mode 100644
index 0000000..df1db10
--- /dev/null
+++ b/Debug/sources.mk
@@ -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 := \
+. \
+
diff --git a/Debug/subdir.mk b/Debug/subdir.mk
new file mode 100644
index 0000000..7236aeb
--- /dev/null
+++ b/Debug/subdir.mk
@@ -0,0 +1,90 @@
+################################################################################
+# Automatically-generated file. Do not edit!
+################################################################################
+
+# Add inputs and outputs from these tool invocations to the build variables
+C_SRCS += \
+../ai.c \
+../ai_trade.c \
+../ai_weights.c \
+../ai_weights_special.c \
+../cards.c \
+../color.c \
+../data.c \
+../decks.c \
+../endgame.c \
+../history.c \
+../io.c \
+../main.c \
+../messenger.c \
+../player_turn.c \
+../pregame.c \
+../science.c \
+../special_actions.c \
+../special_cards.c \
+../trade.c \
+../util.c \
+../view.c \
+../war.c \
+../wonder.c
+
+OBJS += \
+./ai.o \
+./ai_trade.o \
+./ai_weights.o \
+./ai_weights_special.o \
+./cards.o \
+./color.o \
+./data.o \
+./decks.o \
+./endgame.o \
+./history.o \
+./io.o \
+./main.o \
+./messenger.o \
+./player_turn.o \
+./pregame.o \
+./science.o \
+./special_actions.o \
+./special_cards.o \
+./trade.o \
+./util.o \
+./view.o \
+./war.o \
+./wonder.o
+
+C_DEPS += \
+./ai.d \
+./ai_trade.d \
+./ai_weights.d \
+./ai_weights_special.d \
+./cards.d \
+./color.d \
+./data.d \
+./decks.d \
+./endgame.d \
+./history.d \
+./io.d \
+./main.d \
+./messenger.d \
+./player_turn.d \
+./pregame.d \
+./science.d \
+./special_actions.d \
+./special_cards.d \
+./trade.d \
+./util.d \
+./view.d \
+./war.d \
+./wonder.d
+
+
+# Each subdirectory must supply rules for building sources it contributes
+%.o: ../%.c
+ @echo 'Building file: $<'
+ @echo 'Invoking: GCC C Compiler'
+ gcc -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o "$@" "$<"
+ @echo 'Finished building: $<'
+ @echo ' '
+
+
bgstack15