source: trunk/minix/commands/pax/Makefile@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 428 bytes
Line 
1# Makefile for pax
2
3CC = exec cc
4CFLAGS = -O -D_POSIX_SOURCE -DNET2_STAT=1 -D_MINIX=1
5LDFLAGS= -i
6
7all: pax
8
9OBJ = ar_io.o ar_subs.o buf_subs.o cache.o cpio.o file_subs.o ftree.o \
10gen_subs.o getoldopt.o options.o pat_rep.o pax.o sel_subs.o \
11tables.o tar.o tty_subs.o fgetln.o
12
13pax: $(OBJ)
14 $(CC) $(LDFLAGS) -o $@ $(OBJ)
15 install -S 256k $@
16
17install: pax
18 install -cs -o bin pax /usr/bin/pax
19
20clean:
21 rm -f *.o *.bak core pax
Note: See TracBrowser for help on using the repository browser.