util  Diff

Differences From Artifact [a224223f8c]:

To Artifact [e7dd2b0bcc]:


    14     14   cc-flags = $(if $(debug),-g,-O$(cc-opt))
    15     15   cc = $(CC) $(cc-flags)
    16     16   
    17     17   post = $(if $(debug),, && strip $@)
    18     18   cc-post = $(post)
    19     19   sc-post = $(post)
    20     20   mc-post = $(post)
           21  +
           22  +prefix = $(if ${out},${out},/usr)
    21     23   
    22     24   os = $(shell uname -o)
    23     25   
    24     26   %: %.c
    25     27   	$(cc) $< -o$@ $(cc-post)
    26     28   
    27     29   %: %.ml