Edit all Makefile

This commit is contained in:
manzerbredes 2015-07-20 17:18:27 +04:00
parent 3b171151bd
commit cbefa73a90
3 changed files with 36 additions and 8 deletions

View file

@ -1,5 +1,15 @@
gdt.o: gdt.cpp
g++ -m32 -c -o gdt.o gdt.cpp
EXEC=gdt.o
all:$(EXEC)
#----- GDT -----
$(EXEC): gdt.cpp
$(CXX) -c -o $(EXEC) gdt.cpp
#---------------
#----- Other -----
clean:
rm *.o
#----------------