mirror of
git://slackware.nl/current.git
synced 2024-11-16 07:48:02 +01:00
abc3e67678
a/less-654-x86_64-1.txz: Upgraded. d/ninja-1.12.1-x86_64-1.txz: Upgraded. n/whois-5.5.23-x86_64-1.txz: Upgraded. Updated the .sc, .********* (.xn--yfro4i67o, Singapore) and .********************************* (.xn--clchc0ea0b2g2a9gcd, Singapore) TLD servers. extra/bittornado/bittornado-0.3.18-noarch-3.txz: Removed. Obsolete and based on python2.
21 lines
455 B
Makefile
21 lines
455 B
Makefile
#
|
|
# Makefile for unarj under Linux
|
|
# by Arrigo Triulzi ({a.triulzi,agbt}@{imperial,ic}.ac.uk)
|
|
#
|
|
|
|
CC = gcc
|
|
CFLAGS = -O2 -DUNIX -Wno-error=implicit-function-declaration
|
|
INSTALLDIR=/usr/bin
|
|
|
|
unarj: unarj.o decode.o environ.o
|
|
gcc $(CFLAGS) -o unarj unarj.o decode.o environ.o
|
|
|
|
clean:
|
|
rm -f core unarj *.o *.out
|
|
|
|
install:
|
|
cp unarj $(INSTALLDIR)
|
|
|
|
unarj.o: unarj.c unarj.h Makefile
|
|
environ.o: environ.c unarj.h Makefile
|
|
decode.o: decode.c unarj.h Makefile
|