forked from KolibriOS/kolibrios
bf1811e1f5
- Fixed function names in libhttp. - Fixed example dynamic.c - Added macro fixing bug http_receive git-svn-id: svn://kolibrios.org@8549 a494cfbc-eb01-0410-851d-a64ba20cac60
12 lines
171 B
Makefile
12 lines
171 B
Makefile
FASM = fasm
|
|
|
|
OBJS = get.o head.o __lib__.o post.o receive.o send.o
|
|
|
|
%.o : %.asm
|
|
$(FASM) $<
|
|
|
|
all: $(OBJS)
|
|
ar -rsc libhttp.a *.o
|
|
mv -f libhttp.a ../../bin/lib
|
|
rm -f *.o
|