liquid_feedback_core
view Makefile @ 378:e88d0606891f
Bugfix regarding "proportional_order" of suggestions:
Use NULL values explicitly to be sorted last
(includes new suggestions as well as suggestions without any individual rankings)
Use NULL values explicitly to be sorted last
(includes new suggestions as well as suggestions without any individual rankings)
author | jbe |
---|---|
date | Mon Mar 18 09:36:21 2013 +0100 (2013-03-18) |
parents | 28f860d5dfb4 |
children | 54e2a6e63a94 |
line source
1 all:: lf_update lf_update_suggestion_order
3 lf_update: lf_update.c
4 cc -Wall -g \
5 -I "`pg_config --includedir`" \
6 -L "`pg_config --libdir`" \
7 -o lf_update lf_update.c -lpq
9 lf_update_suggestion_order: lf_update_suggestion_order.c
10 cc -Wall -g \
11 -I "`pg_config --includedir`" \
12 -L "`pg_config --libdir`" \
13 -o lf_update_suggestion_order lf_update_suggestion_order.c -lpq
15 clean::
16 rm -f lf_update lf_update_suggestion_order