RM := rm -rf
O_SRCS := 
C_SRCS := 
S_UPPER_SRCS := 
OBJ_SRCS := 
ASM_SRCS := 
OBJS := 
C_DEPS := 
EXECUTABLES := 
USER_OBJS :=
LIBS :=
SUBDIRS := .

C_SRCS += \
../main.c \
../pack.c \
../pmdtape.c \
../zxstape.c 

OBJS += \
./main.o \
./pack.o \
./pmdtape.o \
./zxstape.o 

C_DEPS += \
./main.d \
./pack.d \
./pmdtape.d \
./zxstape.d 

# Each subdirectory must supply rules for building sources it contributes
%.o: ../%.c
	@echo 'Building file: $<'
	@echo 'Invoking: GCC C Compiler'
	gcc -O3 -Wall -c -fmessage-length=0 -MMD -MP -MF"$(@:%.o=%.d)" -MT"$(@:%.o=%.d)" -o"$@" "$<"
	@echo 'Finished building: $<'
	@echo ' '

ifneq ($(MAKECMDGOALS),clean)
ifneq ($(strip $(C_DEPS)),)
-include $(C_DEPS)
endif
endif

# All Target
all: quido

# Tool invocations
quido: $(OBJS) $(USER_OBJS)
	@echo 'Building target: $@'
	@echo 'Invoking: GCC C Linker'
	gcc  -o"quido" $(OBJS) $(USER_OBJS) $(LIBS)
	@echo 'Finished building target: $@'
	@echo ' '

# Other Targets
clean:
	-$(RM) $(OBJS)$(C_DEPS)$(EXECUTABLES) quido
	-@echo ' '

.PHONY: all clean dependents
.SECONDARY:
