OBJ=asmserv.o assembl.o disasm.o main.o
BIN=olyasm

all: ${OBJ}
	gcc ${OBJ} -o ${BIN}

clean:
	rm -f ${OBJ} ${BIN}
