Use a bin/ folder again.

This commit is contained in:
Nicolás A. Ortega 2016-06-03 16:39:35 +02:00
parent dc2c47b34b
commit e5369eca59
No known key found for this signature in database
GPG Key ID: 4825F773B8D44EFF
2 changed files with 3 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
# Ignore binaries
*.o
helloworld
bin/

View File

@ -6,7 +6,8 @@ OBJ=src/helloworld.o
$(AS) -o $@ $<
helloworld: $(OBJ)
$(LINKER) -o $@ $^
mkdir -p bin/
$(LINKER) -o bin/$@ $^
.PHONY: clean