home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_progs
/
business
/
calend2.lzh
/
CALENDAR
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1991-11-01
|
554b
|
32 lines
MONTH_OBJS=display.o lunar.o month.o schedule.o time.o user.o curses.o
CC=cc
CFLAGS=
month: $(MONTH_OBJS)
ln -o month $(MONTH_OBJS) -lm -lc
# (CC) $(MONTH_OBJS) -lm -lcurses -ltermlib -o month
display.o: display.c month.h
$(CC) $(CFLAGS) display.c
lunar.o: lunar.c
$(CC) $(CFLAGS) lunar.c
month.o: month.c month.h
$(CC) $(CFLAGS) month.c
schedule.o: schedule.c month.h
$(CC) $(CFLAGS) schedule.c
time.o: time.c month.h
$(CC) $(CFLAGS) time.c
user.o: user.c month.h
$(CC) $(CFLAGS) user.c
curses.o: curses.c
$(CC) $(CFLAGS) curses.c