| # | Line 6 | Line 6 | LIBUKCPROG = ../libukcprog | |
|---|---|---|
| 6 | CFLAGS = -O3 -Wall | |
| 7 | ||
| 8 | INCLUDES = -I${LIBUKCPROG} | |
| 9 | < | LIBS = -L${LIBUKCPROG} -lukcprog -lkstat |
| 9 | > | LIBS = ${LIBUKCPROG}/libukcprog.a -lkstat |
| 10 | ||
| 11 | all: solaris | |
| 12 | ||
| # | Line 17 | Line 17 | solaris.o: solaris.c ${LIBUKCPROG}/ukcprog.h | |
| 17 | ${CC} ${CFLAGS} -c ${INCLUDES} solaris.c | |
| 18 | ||
| 19 | solaris: solaris.o ${LIBUKCPROG}/libukcprog.a | |
| 20 | < | ${CC} -static ${CFLAGS} -o solaris solaris.o ${LIBS} |
| 20 | > | ${CC} ${CFLAGS} -o solaris solaris.o ${LIBS} |
| 21 | ||
| 22 | clean: | |
| 23 | rm -f solaris solaris.o | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |