File: Makefile.test

package info (click to toggle)
pcb-rnd 3.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 29,624 kB
  • sloc: ansic: 197,571; yacc: 6,153; sh: 5,808; awk: 2,708; makefile: 2,139; lex: 1,107; python: 519; xml: 261; lisp: 169; tcl: 67; perl: 34; javascript: 6; ruby: 5
file content (15 lines) | stat: -rw-r--r-- 499 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
LHT=../../src_3rd/liblihata
HT=../../src_3rd/genht
CFLAGS = -Wall -g -I../../src_3rd -DTESTER
LDFLAGS =
OBJS =  $(LHT)/parser.o $(LHT)/lihata.o  $(HT)/htsp.o $(HT)/hash.o \
  $(LHT)/dom.o $(LHT)/dom_list.o $(LHT)/dom_hash.o $(LHT)/dom_table.o \
  $(LHT)/tree_path.o $(LHT)/tree.o $(LHT)/tree_list.o $(LHT)/tree_hash.o \
  $(LHT)/tree_table.o $(LHT)/hash_str.o

lht_template: lht_template.o $(OBJS)
	$(CC) $(LDFLAGS) -o $@ $^

lht_template.o: lht_template.c
	$(CC) -c -o $@ $(CFLAGS) lht_template.c