summaryrefslogblamecommitdiff
path: root/Source/Applications/PaperWork/Makefile
blob: d3203cf5576771768a516483d7a1601270a7d46a (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                                                                                                                                                  
                     





















                                         
.PHONY: clean, mrproper

CXX = g++
CXXFLAGS = -nostartfiles -nostdlib -ffreestanding -fno-exceptions -fno-rtti -I ../../Library/Common -I ../../Library/Interface -I ../../Library/Userland -D THIS_IS_MELON_USERLAND

LD = ld
LDFLAGS = -T ../../Library/Link.ld -L ../../Library

Objects = PaperWork.o
OutFile = PaperWork

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

rebuild: mrproper all

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

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

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

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