grim/docker-noop

Get smaller

2016-05-02, Gary Kramlich
f538df99605b
Get smaller
#!/usr/bin/make -f
.PHONY: all image clean
all: noop
clean:
rm -f noop *.o
%.o: %.asm
nasm -f elf $< -o $@
noop: noop.o
gcc -m32 -Wall -s -nostdlib $< -o $@
image: noop
docker build -t noop .