Parent Directory
|
Revision Log
compile library objects with -fPIC so that we don't break the linker
| 1 | CC=gcc |
| 2 | CFLAGS=-Wall -g -D_DEBUG_ |
| 3 | |
| 4 | %.o: %.c |
| 5 | $(CC) $(CFLAGS) -o $@ -c $< |
| 6 | |
| 7 | %.opic: %.c |
| 8 | $(CC) $(CFLAGS) -fPIC -o $@ -c $< |
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |