diff options
author | Alexis211 <alexis211@gmail.com> | 2009-11-08 12:58:27 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2009-11-08 12:58:27 +0100 |
commit | ec6a6922d074da4b64976282333e308deb39aeec (patch) | |
tree | 60d5e4a63095af75fc3ddae38021fa4c92ffd361 /Source/Applications/PaperWork/Makefile | |
parent | 962b8e892ce060b9690a35b0bcf6bae9a882c330 (diff) | |
download | Melon-ec6a6922d074da4b64976282333e308deb39aeec.tar.gz Melon-ec6a6922d074da4b64976282333e308deb39aeec.zip |
Introduced PaperWork : our init/login manager.
Login with user=root;pass=admin or user=alexis211;pass=iamgod
Diffstat (limited to 'Source/Applications/PaperWork/Makefile')
-rw-r--r-- | Source/Applications/PaperWork/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/Source/Applications/PaperWork/Makefile b/Source/Applications/PaperWork/Makefile new file mode 100644 index 0000000..fe8d564 --- /dev/null +++ b/Source/Applications/PaperWork/Makefile @@ -0,0 +1,31 @@ +.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 = main.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) |