From 3c1fb074630400a4573f0916a71307217f3aedd2 Mon Sep 17 00:00:00 2001 From: deuce <> Date: Thu, 14 Aug 2003 12:32:04 +0000 Subject: [PATCH] Build ex_hello by default... doesn't seem to work (How do you pass a dropfile?) --- src/odoors/GNUmakefile | 5 ++++- src/odoors/ex_hello.c | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/src/odoors/GNUmakefile b/src/odoors/GNUmakefile index 8bef5cb84c..edfba62502 100644 --- a/src/odoors/GNUmakefile +++ b/src/odoors/GNUmakefile @@ -85,7 +85,7 @@ endif # # Define primary target. # -all: ${LIBDIR}libODoors${SHLIB} ${LIBDIR}libODoors${STATICLIB} ex_diag +all: ${LIBDIR}libODoors${SHLIB} ${LIBDIR}libODoors${STATICLIB} ex_diag ex_hello # #------------------------------------------------------------------------------ # @@ -159,5 +159,8 @@ ex_chat: ex_chat.c ${LIBDIR}libODoors${SHLIB} ex_diag: ex_diag.c ${LIBDIR}libODoors${SHLIB} $(CC) $(CFLAGS) ex_diag.c -o ex_diag -lODoors +ex_hello: ex_hello.c ${LIBDIR}libODoors${SHLIB} + $(CC) $(CFLAGS) ex_hello.c -o ex_hello -lODoors + # #------------------------------------------------------------------------------ diff --git a/src/odoors/ex_hello.c b/src/odoors/ex_hello.c index 1b620aaa2b..01449839b4 100644 --- a/src/odoors/ex_hello.c +++ b/src/odoors/ex_hello.c @@ -15,7 +15,7 @@ /* The opendoor.h file must be included by any program using OpenDoors. */ -#include "opendoor.h" +#include "OpenDoor.h" /* The main() or WinMain() function: program execution begins here. */ -- GitLab