69 lines
1.3 KiB
Text
69 lines
1.3 KiB
Text
|
# .+
|
||
|
#
|
||
|
# .identifier : $Id: Makefile_def,v 2.2 2001/01/25 11:59:19 cibrario Exp $
|
||
|
# .context : CHF, Condition Handling Facility
|
||
|
# .title : $RCSfile: Makefile_def,v $, Makefile
|
||
|
# .kind : Makefile
|
||
|
# .author : Ivan Cibrario B.
|
||
|
# .site : CSTV-CNR
|
||
|
# .creation : 22-May-2000
|
||
|
# .keywords : *
|
||
|
# .description :
|
||
|
# Makefile for CHF library common definitions; no platform dependencies here.
|
||
|
# .notes :
|
||
|
# $Log: Makefile_def,v $
|
||
|
# Revision 2.2 2001/01/25 11:59:19 cibrario
|
||
|
# Added partial Win32 support (Windows CE only).
|
||
|
#
|
||
|
# Revision 2.1 2000/05/29 13:08:39 cibrario
|
||
|
# *** empty log message ***
|
||
|
#
|
||
|
#
|
||
|
# .-
|
||
|
|
||
|
#
|
||
|
# Source files
|
||
|
#
|
||
|
SRC = chf_init.c chf_gen.c chf_sig.c chf_abrt.c chf_hdlr.c \
|
||
|
chf_msgc.c chf_st.c \
|
||
|
chf_top.c \
|
||
|
chf_win32.c
|
||
|
|
||
|
TSRC = test01.c test02.c test03.c test04.c test05.c test06.c \
|
||
|
test07.c
|
||
|
|
||
|
HDR = Chf.h ChfPriv.h
|
||
|
|
||
|
MSF = chf.msf
|
||
|
|
||
|
TMSF = test01.msf
|
||
|
|
||
|
RES =
|
||
|
|
||
|
#
|
||
|
# Target object files
|
||
|
#
|
||
|
OBJ = $(SRC:.c=.o)
|
||
|
|
||
|
#
|
||
|
# Target test programs
|
||
|
#
|
||
|
TBIN = $(TSRC:.c=)
|
||
|
|
||
|
#
|
||
|
# Other definitions
|
||
|
#
|
||
|
HPATH = -I.
|
||
|
LPATH = -L.
|
||
|
|
||
|
CFLAGS = $(F_CFLAGS) $(O_CFLAGS) $(TS_CFLAGS) $(U_CFLAGS) $(HPATH)
|
||
|
LFLAGS = $(F_CFLAGS) $(L_CFLAGS) $(TS_LFLAGS) $(U_CFLAGS) $(HPATH)
|
||
|
LDFLAGS = $(LPATH)
|
||
|
|
||
|
LOADLIBES = $(LIB) $(TS_LOADLIBES) $(I_LOADLIBES) $(U_LOADLIBES)
|
||
|
|
||
|
#
|
||
|
# Solaris spelling of LOADLIBES
|
||
|
#
|
||
|
LDLIBS = $(LOADLIBES)
|