File: Makefile

package info (click to toggle)
wap-wml-tools 0.0.4-6
  • links: PTS, VCS
  • area: non-free
  • in suites: squeeze, wheezy
  • size: 332 kB
  • ctags: 235
  • sloc: ansic: 1,108; makefile: 111; sh: 109
file content (14 lines) | stat: -rw-r--r-- 223 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
OBJS = wmlhtml.o

all: wmlhtml

re: clean all

.c.o:
	$(CC) $(CC_OPS) $(XML_CC_OPS) -c $*.c

wmlhtml: $(OBJS)
	$(CC) $(CC_OPS) $(XML_CC_OPS) -o wmlhtml $(OBJS) $(LD_OPS) $(XML_LD_OPS)

clean:
	rm -f $(OBJS) wmlhtml core *~