OBJS=start.o __main.o open.o unlink.o write.o read.o close.o exit.o \
bzero.o readline.o writen.o strlen.o strcmp.o main.o


start1:
	/bin/rm -rf start *.o
	nasm -f elf start.asm
	nasm -f elf __main.asm
	nasm -f elf open.asm
	nasm -f elf unlink.asm 
	nasm -f elf write.asm
	nasm -f elf read.asm
	nasm -f elf close.asm 
	nasm -f elf exit.asm 
	cc strcmp.c -c
	cc strlen.c -c
	cc bzero.c -c
	cc readline.c -c
	cc writen.c -c
	cc main.c -c
	#c++ -I/usr/local/include/stlport/ main2.cpp -c
	#cc __main.c -c
	ld -o start ${OBJS}
	#c++ -static -o start ${OBJS} -L/usr/local/lib/ -lstlport_gcc
