viewing source for "inputs/Makefile"

last commit

commit 2fcfc3b2e8e18bd4ab667b82d939cc2ba9b6a5d3 Author: Andrew Rader <andrew.r.rader@gmail.com> Date: Sun Jan 13 09:25:46 2008 -0800
Initial Commit

source code

01: #
02: ##
03: #
04: 
05: AS=as
06: CPP=cpp
07: CC=gcc
08: 
09: ASFLAGS=
10: CFLAGS=-Wall -Werror -ggdb
11: LDFLAGS=-ldl
12: 
13: xml.so: xml.c
14: 	$(CC) $(CFLAGS) -shared -o xml.so xml.c
15: 
16: clean:
17: 	rm -f *.so