perl 5.0 alpha 9
[p5sagit/p5-mst-13.2.git] / ext / dl / eg / Makefile.att
1 all:    main test test1
2 main:   main.c
3         cc -g -o main main.c -ldl
4
5 test.o: test.c
6         cc -g -pic -c test.c
7
8 test:   test.o
9         cc -o test -G test.o
10
11 test1.o:        test1.c
12         cc -g -pic -c test1.c
13
14 test1:  test1.o
15         cc -o test1 -G test1.o
16
17 clean:
18         /bin/rm -f *.o test test1 main