summaryrefslogtreecommitdiff
path: root/archivers
diff options
context:
space:
mode:
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