Tiberiu Chibici
852cf1bb17
==================================================== Mainly changed: FS.Initrd + (kind of) refractored VFS, bugfixed + Rewrote 'initrd' file system, fixed many problems + Working 'cat' and 'dir' console commands + Wrote 'initrd' image write application (for windows), however it may be bugged
95 lines
1.8 KiB
Makefile
95 lines
1.8 KiB
Makefile
#
|
|
# Generated Makefile - do not edit!
|
|
#
|
|
# Edit the Makefile in the project folder instead (../Makefile). Each target
|
|
# has a -pre and a -post target defined where you can add customized code.
|
|
#
|
|
# This makefile implements configuration specific macros and targets.
|
|
|
|
|
|
# Environment
|
|
MKDIR=mkdir
|
|
CP=cp
|
|
GREP=grep
|
|
NM=nm
|
|
CCADMIN=CCadmin
|
|
RANLIB=ranlib
|
|
CC=gcc.exe
|
|
CCC=g++.exe
|
|
CXX=g++.exe
|
|
FC=
|
|
AS=as.exe
|
|
|
|
# Macros
|
|
CND_PLATFORM=MinGW-Windows
|
|
CND_CONF=Debug
|
|
CND_DISTDIR=dist
|
|
|
|
# Include project Makefile
|
|
include Makefile
|
|
|
|
# Object Directory
|
|
OBJECTDIR=build/${CND_CONF}/${CND_PLATFORM}
|
|
|
|
# Object Files
|
|
OBJECTFILES= \
|
|
${OBJECTDIR}/main.o \
|
|
${OBJECTDIR}/commands.o \
|
|
${OBJECTDIR}/info.o
|
|
|
|
|
|
# C Compiler Flags
|
|
CFLAGS=
|
|
|
|
# CC Compiler Flags
|
|
CCFLAGS=
|
|
CXXFLAGS=
|
|
|
|
# Fortran Compiler Flags
|
|
FFLAGS=
|
|
|
|
# Assembler Flags
|
|
ASFLAGS=
|
|
|
|
# Link Libraries and Options
|
|
LDLIBSOPTIONS=
|
|
|
|
# Build Targets
|
|
.build-conf: ${BUILD_SUBPROJECTS}
|
|
"${MAKE}" -f nbproject/Makefile-Debug.mk dist/Debug/MinGW-Windows/ramdiskwriter.exe
|
|
|
|
dist/Debug/MinGW-Windows/ramdiskwriter.exe: ${OBJECTFILES}
|
|
${MKDIR} -p dist/Debug/MinGW-Windows
|
|
${LINK.cc} -o ${CND_DISTDIR}/${CND_CONF}/${CND_PLATFORM}/ramdiskwriter ${OBJECTFILES} ${LDLIBSOPTIONS}
|
|
|
|
${OBJECTDIR}/main.o: main.cpp
|
|
${MKDIR} -p ${OBJECTDIR}
|
|
${RM} $@.d
|
|
$(COMPILE.cc) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/main.o main.cpp
|
|
|
|
${OBJECTDIR}/commands.o: commands.cpp
|
|
${MKDIR} -p ${OBJECTDIR}
|
|
${RM} $@.d
|
|
$(COMPILE.cc) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/commands.o commands.cpp
|
|
|
|
${OBJECTDIR}/info.o: info.cpp
|
|
${MKDIR} -p ${OBJECTDIR}
|
|
${RM} $@.d
|
|
$(COMPILE.cc) -g -MMD -MP -MF $@.d -o ${OBJECTDIR}/info.o info.cpp
|
|
|
|
# Subprojects
|
|
.build-subprojects:
|
|
|
|
# Clean Targets
|
|
.clean-conf: ${CLEAN_SUBPROJECTS}
|
|
${RM} -r build/Debug
|
|
${RM} dist/Debug/MinGW-Windows/ramdiskwriter.exe
|
|
|
|
# Subprojects
|
|
.clean-subprojects:
|
|
|
|
# Enable dependency checking
|
|
.dep.inc: .depcheck-impl
|
|
|
|
include .dep.inc
|