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


                       
                 

         
                                                                                                                                                                                  
 
       
                                                   
 
                                  





                                                         



                                        
                                   
 
        
                                
                                   







                                         
.PHONY: clean, mrproper

ASM = nasm
ASMFLAGS = -f bin

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

Applications = asmdemo cxxdemo GOL

all: $(Applications)
	echo "* Done with applications : $(Applications)"

rebuild: mrproper all

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

%: %.asm
	echo "* Compiling $<..."
	$(ASM) $(ASMFLAGS) -o $@ $<

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

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