1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# Makefile for libelfrw.a
LIBOBJS = elfrw.o elfrw_dyn.o elfrw_ehdr.o elfrw_phdr.o elfrw_rel.o \
elfrw_shdr.o elfrw_sym.o elfrw_ver.o
libelfrw.a: $(LIBOBJS)
ar crs $@ $^
elfrw.o: elfrw.c elfrw.h elfrw_int.h
elfrw_dyn.o: elfrw_dyn.c elfrw_int.h
elfrw_ehdr.o: elfrw_ehdr.c elfrw_int.h
elfrw_phdr.o: elfrw_phdr.c elfrw_int.h
elfrw_rel.o: elfrw_rel.c elfrw_int.h
elfrw_shdr.o: elfrw_shdr.c elfrw_int.h
elfrw_sym.o: elfrw_sym.c elfrw_int.h
elfrw_ver.o: elfrw_ver.c elfrw_int.h
clean:
rm -f libelfrw.a $(LIBOBJS)
|