summaryrefslogblamecommitdiff
path: root/Source/Tools/MakeRamFS/Makefile
blob: 019ec29a6aa9e8a27c1bd7efc0aadaf332067be5 (plain) (tree)





































                                                   
.PHONY: clean, mrproper

CC = gcc
CXX = g++
LD = gcc
LDFLAGS = -lstdc++
CFLAGS =
CXXFLAGS =

OutFile = MakeRamFS
Objects = main.o 

all: $(OutFile)
	echo "* Done with $(OutFile)."

rebuild: mrproper all

$(OutFile): $(Objects)
	echo "* Linking executable : $(OutFile)..."
	$(LD) -o $(OutFile) $(LDFLAGS) $^

%.o: %.c
	echo "* Compiling $<..."
	$(CC) -c $< -o $@ $(CFLAGS)

%.o: %.cpp
	echo "* Compiling $<..."
	$(CXX) -c $< -o $@ $(CXXFLAGS)

clean:
	echo "* Removing object files..."
	rm -rf *.o
	rm -rf */*.o
	rm -rf */*/*.o

mrproper: clean
	echo "* Removing executable : $(OutFile)"
	rm -rf $(OutFile)