pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/archivers/unarj/files Add Makefile, since distfiles co...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/8badf0f04922
branches:  trunk
changeset: 487879:8badf0f04922
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Fri Jan 21 14:30:32 2005 +0000

description:
Add Makefile, since distfiles comes without one.

diffstat:

 archivers/unarj/files/Makefile |  18 ++++++++++++++++++
 1 files changed, 18 insertions(+), 0 deletions(-)

diffs (22 lines):

diff -r 68431c51ca6f -r 8badf0f04922 archivers/unarj/files/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/unarj/files/Makefile    Fri Jan 21 14:30:32 2005 +0000
@@ -0,0 +1,18 @@
+.c.o:
+       ${CC} ${CFLAGS} -DUNIX -c $<
+
+all:          unarj
+
+unarj.o:    unarj.c   unarj.h
+
+environ.o:  environ.c unarj.h
+
+decode.o:   decode.c  unarj.h
+
+OBJS = unarj.o decode.o environ.o
+
+unarj: $(OBJS)
+       $(CC) $(LDFLAGS) $(OBJS) -o unarj
+
+clean:
+       -rm -f $(OBJS) unarj



Home | Main Index | Thread Index | Old Index