8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 13:23:02 +01:00
firebird-mirror/generated/msgs/makefile

43 lines
746 B
Makefile
Raw Normal View History

2001-05-23 15:26:42 +02:00
REL_SRC_DIR=../../src/msgs
2002-02-26 14:48:58 +01:00
.SUFFIXES : .e .epp
2001-05-23 15:26:42 +02:00
!IF "$(OS)" == "Windows_NT"
# NOTE - This should probably also be the path taken for other
# Win32 operating systems, like Win9x/Me.
# NOTE - If you enter an absolute path to gpre.exe, it MUST use
# MS-DOS style backslash!
GPRE_PGM=..\..\bin\gpre
SED_PGM=sed
DELETE_COMMAND=del /q
#
# MS NMAKE specific directory-relative inference rule
#
{$(REL_SRC_DIR)}.e{}.c:
$(GPRE_PGM) -r -m -n $? -o >$@
2002-02-26 14:48:58 +01:00
{$(REL_SRC_DIR)}.epp{}.cpp:
$(GPRE_PGM) -r -m -n $? -o >$@
2001-05-23 15:26:42 +02:00
!ELSE
!ERROR Running on unknown operating system.
!ENDIF
#
# load.c - disabled
#
2002-02-26 14:48:58 +01:00
CPP_FILES=build_file.cpp check_msgs.cpp enter_msgs.cpp modify_msgs.cpp \
change_msgs.cpp
2001-05-23 15:26:42 +02:00
2002-02-26 14:48:58 +01:00
all: $(CPP_FILES)
2001-05-23 15:26:42 +02:00
clean :
2002-02-26 14:48:58 +01:00
-$(DELETE_COMMAND) *.cpp
2001-05-23 15:26:42 +02:00