diff options
author | wiz <wiz@pkgsrc.org> | 2005-01-21 14:30:32 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-01-21 14:30:32 +0000 |
commit | 9a583719725177c6560db0f2a1d27334b6284303 (patch) | |
tree | 939e7a575708636793ba4e30f0ed634d5c25b427 /archivers | |
parent | ded2e0bf4a4afdabad9dcf23c275dc833fd283cb (diff) | |
download | pkgsrc-9a583719725177c6560db0f2a1d27334b6284303.tar.gz |
Add Makefile, since distfiles comes without one.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/unarj/files/Makefile | 18 |
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 |