######## URLENDEC version 1.0 #################################################
##
## Copyright 2000 G. Adam Stanislav
## All rights reserved.
##
###############################################################################

all:	urlencode urldecode

urlencode:	urlencode.o
	ld -o urlencode urlencode.o
	strip -s urlencode

urldecode:	urldecode.o
	ld -o urldecode urldecode.o
	strip -s urldecode

urlencode.o:	urlencode.asm
	nasm -f elf urlencode.asm

urldecode.o:	urldecode.asm
	nasm -f elf urldecode.asm

