summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2005-01-21 14:30:32 +0000
committerwiz <wiz@pkgsrc.org>2005-01-21 14:30:32 +0000
commit9a583719725177c6560db0f2a1d27334b6284303 (patch)
tree939e7a575708636793ba4e30f0ed634d5c25b427 /archivers
parentded2e0bf4a4afdabad9dcf23c275dc833fd283cb (diff)
downloadpkgsrc-9a583719725177c6560db0f2a1d27334b6284303.tar.gz
Add Makefile, since distfiles comes without one.
Diffstat (limited to 'archivers')
-rw-r--r--archivers/unarj/files/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/archivers/unarj/files/Makefile b/archivers/unarj/files/Makefile
new file mode 100644
index 00000000000..76046e9a610
--- /dev/null
+++ b/archivers/unarj/files/Makefile
@@ -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