home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Press 1997 July
/
Sezamfile97_1.iso
/
msdos
/
c
/
cbase11.a03
/
CBASE11.ZIP
/
DOS
/
LIBRARY.MAK
< prev
next >
Wrap
Makefile
|
1993-01-01
|
729b
|
39 lines
#
# Copyright (c) 1989-1992 Citadel Software, Inc.
# All Rights Reserved
#
# library.mak 1.7 - 93/01/01
# include makefile to create library for DOS/Windows
# macro definitions
!include "..\dos\macros.mak"
# commands and options
ARRSP = ar.rsp # library archiver response file
LIB = $(MDL)$(LIBNAME)$(WIN).lib
# library file
MAN = $(LIBNAME).man # manual file
FILES = $(HDRS) $(SRCS)
MANS = $(MANS1) $(MANS2) $(MANS3) $(MANS4)
OBJS = $(SRCS:.c=.obj)
default: $(LIB)
all: $(LIB) man install
install: $(LIB) $(MAN)
$(CP) $(LIBNAME).h $(INCDIR)
$(CP) $(LIB) $(LIBDIR)
$(CP) $(MAN) $(MANDIR)
$(ECHO) $(LIBNAME) installed.
$(OBJS): $(HDRS)
#
!include "..\dos\rules.mak"
# eof