home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume2
/
spaceout
/
Makefile
next >
Wrap
Makefile
|
1991-08-07
|
336b
|
20 lines
#
# Makefile for Spaceout Version 1.1
# 2/14/88
#
# Copyright (c) 1988, John H. Pochmara
#
# You may copy Spaceout in whole or in part as long as you don't
# try to make money off it, or pretend that you wrote it.
#
LIBS= -lX11
SCR = spaceout.c
OBJ = spaceout.o
CFLAGS = -O -c
space: $(OBJ)
cc -o space $(OBJ) $(LIBS)
$(OBJ):