|
Revision 55, 441 bytes
(checked in by nlawren2, 6 months ago)
|
Committed, and dead
|
| Line | |
|---|
| 1 |
current: db_test |
|---|
| 2 |
@echo made $< |
|---|
| 3 |
|
|---|
| 4 |
db_test: test.o db.o xdelta3.o |
|---|
| 5 |
gcc test.o xdelta3.o db.o -lpq -o db_test |
|---|
| 6 |
|
|---|
| 7 |
xdelta_test: xdelta.o xdelta3.o |
|---|
| 8 |
gcc xdelta.o xdelta3.o -o xdelta_test |
|---|
| 9 |
|
|---|
| 10 |
xdelta.o: xdelta.c |
|---|
| 11 |
gcc xdelta.c -c |
|---|
| 12 |
|
|---|
| 13 |
test.o: test.c |
|---|
| 14 |
gcc test.c -c |
|---|
| 15 |
|
|---|
| 16 |
db.o: db.c db.h file.db dir.db stream.db |
|---|
| 17 |
gcc db.c -c -w |
|---|
| 18 |
|
|---|
| 19 |
xdelta3.o: xdelta3.c xdelta3.h xdelta3-cfgs.h xdelta3-list.h xdelta3-decode.h |
|---|
| 20 |
gcc xdelta3.c -c |
|---|
| 21 |
|
|---|
| 22 |
clean: |
|---|
| 23 |
rm -f *.o db_test xdelta_test |
|---|