home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
misc
/
volume40
/
vname
/
part01
/
Makefile
< prev
next >
Wrap
Makefile
|
1993-11-08
|
241b
|
20 lines
CC=gcc
CFLAGS=-Wall -g -I.
LIB=libv.a
OBJ= $(LIB)(vname.o)
all: $(LIB) tt
tt: tt.o $(LIB)
$(CC) $(CFLAGS) -o tt tt.o $(LIB)
$(LIB): $(OBJ)
ranlib $(LIB)
$(OBJ): config.h vname.h
clean:
rm -f *.o core
clobber: clean
rm -f tt $(LIB)