viewing source for "outputs/Makefile"
last commit
commit 2fcfc3b2e8e18bd4ab667b82d939cc2ba9b6a5d3
Date: Sun Jan 13 09:25:46 2008 -0800
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: bmp.so: bmp.c
14: $(CC) $(CFLAGS) -shared -o bmp.so bmp.c
15:
16: clean:
17: rm -f *.so