if a variable is displayed, show trait properties section, otherwise do not.
[sgn.git] / programs / Makefile
blob2a8a7cb57783a7e92eb807739a40d51b06d7c253
1 PROGS= draw_contigalign
3 CC=gcc
4 CPP=g++
5 CFLAGS=-O2 -fomit-frame-pointer -Wall
7 all: $(PROGS)
9 draw_contigalign: source/draw_contigalign.c
10 $(CC) $(CFLAGS) -odraw_contigalign $< -lgd
12 clean:
13 rm -f $(PROGS) *.o