File: Makefile

package info (click to toggle)
albert 0.4.10.1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,556 kB
  • ctags: 2,014
  • sloc: lisp: 13,587; ansic: 7,729; xml: 843; makefile: 99; sh: 28
file content (10 lines) | stat: -rw-r--r-- 255 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
all: libexpat_parse.a

clean:
	-$(RM) *.o *.a *~

libexpat_parse.a: xmlparse.c hashtable.c
	gcc -I../xmltok -Wall -W -Winline -Wno-unused -g -c xmlparse.c
	gcc -Wall -W -Winline -Wno-unused -g -c hashtable.c
	ar r libexpat_parse.a xmlparse.o hashtable.o