1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#
# Makefile for init_exp
#
PROGS = init_exp
SRCROOT=$(SRC)/..
include $(SRCROOT)/global.mk
include ../system.mk
INCLUDES_E += $(MISC_INC) $(IOLIB_INC)
OBJS=init_exp.o
init_exp: $(OBJS)
$(CLD) $(LDEXEFLAG)$@$(EXE_SUFFIX) $(SUBSYSTEMCONSOLE) $(OBJS) $(IOLIB_LIB) $(MISC_LIB) $(LIBSC)
DEPEND_OBJ = $(OBJS)
distsrc: distsrc_dirs
cp $(S)/*.[ch] $(S)/Makefile $(DIRNAME)
install:
cp $(PROGS) $(INSTALLBIN)
# DO NOT DELETE THIS LINE -- make depend depends on it.
init_exp.o: $(PWD)/staden_config.h
init_exp.o: $(SRCROOT)/Misc/os.h
init_exp.o: $(SRCROOT)/Misc/xalloc.h
|