#default PREFIX /usr/local #default INCLDIR /include #default LIBDIR /lib #default CC gcc #ifdef DEBUG #define OPT_CFLAGS -Og -g #else #define OPT_CFLAGS -O2 #endif cflags = -Wunused-function -Wunused-variable -Wconversion -Wformat -I include #{OPT_CFLAGS} #{EXTRA_CFLAGS} rule liba gcc -o $out.tmp.o $in $cflags -r objcopy --keep-global-symbols=liballoc.api $out.tmp.o $out.fixed.o ar rcs $out $out.fixed.o rm $out.tmp.o $out.fixed.o rule libso gcc -o $out $in $cflags -shared -Wl,-version-script liballoc.lds rule cc gcc -o $out $in $cflags rule mkdir mkdir $out target build mkdir target build/liballoc.a liba src/allocator.c | include/allocator.h build target build/liballoc.so libso src/allocator.c | include/allocator.h build target build/test cc src/test.c build/liballoc.a | build command clean rm -rf build command cleanall rmk clean command install install -m755 build/liballoc.a -t "#{DESTDIR}#{PREFIX}#{LIBDIR}" install -m755 build/liballoc.so -t "#{DESTDIR}#{PREFIX}#{LIBDIR}" install -m644 include/allocator.h -t "#{DESTDIR}#{PREFIX}#{INCLDIR}" command uninstall rm -f "#{DESTDIR}#{PREFIX}#{LIBDIR}/liballoc.a" rm -f "#{DESTDIR}#{PREFIX}#{LIBDIR}/liballoc.so" rm -f "#{DESTDIR}#{PREFIX}#{INCLDIR}/allocator.h" command all rmk build/liballoc.a build/liballoc.so build/test