File: Makefile

package info (click to toggle)
wap-wml-tools 0.0.4-7
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm, bullseye, buster, jessie, jessie-kfreebsd, sid, stretch
  • size: 388 kB
  • ctags: 282
  • sloc: ansic: 1,122; sh: 112; makefile: 73
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 *~