mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 23:23:02 +01:00
Removing 'generated'
This commit is contained in:
parent
df014fb05c
commit
88d1898bca
@ -1,27 +0,0 @@
|
|||||||
!IF "$(OS)" == "Windows_NT"
|
|
||||||
|
|
||||||
# NOTE - If you enter an absolute path to gpre.exe, it MUST use
|
|
||||||
# MS-DOS style backslash!
|
|
||||||
GPRE_PGM=..\..\bin\gpre
|
|
||||||
|
|
||||||
DELETE_COMMAND=del /q
|
|
||||||
|
|
||||||
!ELSE
|
|
||||||
|
|
||||||
!ERROR Running on unknown operating system.
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
REL_SRC_DIR=../../src/alice
|
|
||||||
|
|
||||||
|
|
||||||
CPP_FILES=alice_meta.cpp
|
|
||||||
|
|
||||||
all: $(CPP_FILES)
|
|
||||||
|
|
||||||
clean :
|
|
||||||
-$(DELETE_COMMAND) *.cpp
|
|
||||||
|
|
||||||
alice_meta.cpp : $(REL_SRC_DIR)/alice_meta.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
|||||||
!IF "$(OS)" == "Windows_NT"
|
|
||||||
|
|
||||||
# NOTE - If you enter an absolute path to gpre.exe, it MUST use
|
|
||||||
# MS-DOS style backslash!
|
|
||||||
GPRE_PGM=..\..\bin\gpre
|
|
||||||
SED_PGM=sed
|
|
||||||
|
|
||||||
COMPILER_CFLAGS=-c -DNOMSG -DWIN32_LEAN_AND_MEAN -nologo
|
|
||||||
OBJEXT=obj
|
|
||||||
DELETE_COMMAND=del /q
|
|
||||||
|
|
||||||
!ELSE
|
|
||||||
|
|
||||||
!ERROR Running on unknown operating system.
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
REL_SRC_DIR=../../src/burp
|
|
||||||
COMMON_CFLAGS=-I../../src -I../../src/include
|
|
||||||
CFLAGS=$(COMMON_CFLAGS) $(COMPILER_CFLAGS)
|
|
||||||
|
|
||||||
#
|
|
||||||
# CPP_FILES could be useful as build target in case we are only
|
|
||||||
# generate the C++ files into this dir
|
|
||||||
#
|
|
||||||
|
|
||||||
CPP_FILES=backup.cpp restore.cpp
|
|
||||||
|
|
||||||
OBJ_FILES=backup.$(OBJEXT) restore.$(OBJEXT)
|
|
||||||
|
|
||||||
# all: $(OBJ_FILES)
|
|
||||||
all: $(CPP_FILES)
|
|
||||||
|
|
||||||
cpp_files : $(CPP_FILES)
|
|
||||||
|
|
||||||
clean :
|
|
||||||
-$(DELETE_COMMAND) *.$(OBJEXT)
|
|
||||||
-$(DELETE_COMMAND) *.cpp
|
|
||||||
|
|
||||||
backup.cpp : $(REL_SRC_DIR)/backup.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
||||||
restore.cpp : $(REL_SRC_DIR)/restore.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
!IF "$(OS)" == "Windows_NT"
|
|
||||||
|
|
||||||
# NOTE - If you enter an absolute path to gpre.exe, it MUST use
|
|
||||||
# MS-DOS style backslash!
|
|
||||||
GPRE_PGM=..\..\bin\gpre
|
|
||||||
|
|
||||||
DELETE_COMMAND=del /q
|
|
||||||
|
|
||||||
!ELSE
|
|
||||||
|
|
||||||
!ERROR Running on unknown operating system.
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
REL_SRC_DIR=../../src/dsql
|
|
||||||
|
|
||||||
|
|
||||||
CPP_FILES=array.cpp blob.cpp metd.cpp
|
|
||||||
|
|
||||||
all: $(CPP_FILES)
|
|
||||||
|
|
||||||
clean :
|
|
||||||
-$(DELETE_COMMAND) *.cpp
|
|
||||||
|
|
||||||
array.cpp : $(REL_SRC_DIR)/array.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
||||||
blob.cpp : $(REL_SRC_DIR)/blob.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
||||||
metd.cpp : $(REL_SRC_DIR)/metd.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
|||||||
!IF "$(OS)" == "Windows_NT"
|
|
||||||
|
|
||||||
# NOTE - If you enter an absolute path to gpre.exe, it MUST use
|
|
||||||
# MS-DOS style backslash!
|
|
||||||
GPRE_PGM=..\..\bin\gpre
|
|
||||||
|
|
||||||
DELETE_COMMAND=del /q
|
|
||||||
|
|
||||||
!ELSE
|
|
||||||
|
|
||||||
!ERROR Running on unknown operating system.
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
REL_SRC_DIR=../../src/dudley
|
|
||||||
|
|
||||||
|
|
||||||
CPP_FILES=exe.cpp extract.cpp
|
|
||||||
|
|
||||||
all: $(CPP_FILES)
|
|
||||||
|
|
||||||
clean :
|
|
||||||
-$(DELETE_COMMAND) *.cpp
|
|
||||||
|
|
||||||
exe.cpp : $(REL_SRC_DIR)/exe.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
||||||
extract.cpp : $(REL_SRC_DIR)/extract.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
|||||||
!IF "$(OS)" == "Windows_NT"
|
|
||||||
|
|
||||||
# NOTE - If you enter an absolute path to gpre.exe, it MUST use
|
|
||||||
# MS-DOS style backslash!
|
|
||||||
GPRE_PGM=..\..\bin\gpre
|
|
||||||
|
|
||||||
DELETE_COMMAND=del /q
|
|
||||||
|
|
||||||
!ELSE
|
|
||||||
|
|
||||||
!ERROR Running on unknown operating system.
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
REL_SRC_DIR=../../src/gpre
|
|
||||||
|
|
||||||
|
|
||||||
CPP_FILES=gpre_meta.cpp
|
|
||||||
|
|
||||||
all: $(CPP_FILES)
|
|
||||||
|
|
||||||
clean :
|
|
||||||
-$(DELETE_COMMAND) *.cpp
|
|
||||||
|
|
||||||
gpre_meta.cpp : $(REL_SRC_DIR)/gpre_meta.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
@ -1,33 +0,0 @@
|
|||||||
!IF "$(OS)" == "Windows_NT"
|
|
||||||
|
|
||||||
# NOTE - If you enter an absolute path to gpre.exe, it MUST use
|
|
||||||
# MS-DOS style backslash!
|
|
||||||
GPRE_PGM=..\..\bin\gpre
|
|
||||||
|
|
||||||
DELETE_COMMAND=del /q
|
|
||||||
|
|
||||||
!ELSE
|
|
||||||
|
|
||||||
!ERROR Running on unknown operating system.
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
REL_SRC_DIR=../../src/isql
|
|
||||||
|
|
||||||
|
|
||||||
CPP_FILES=extract.cpp isql.cpp show.cpp
|
|
||||||
|
|
||||||
all: $(CPP_FILES)
|
|
||||||
|
|
||||||
clean :
|
|
||||||
-$(DELETE_COMMAND) *.cpp
|
|
||||||
|
|
||||||
extract.cpp : $(REL_SRC_DIR)/extract.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
||||||
isql.cpp : $(REL_SRC_DIR)/isql.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
||||||
show.cpp : $(REL_SRC_DIR)/show.epp
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
@ -1,52 +0,0 @@
|
|||||||
REL_SRC_DIR=../../src/jrd
|
|
||||||
.SUFFIXES : .e .epp
|
|
||||||
|
|
||||||
!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) -n -gds -raw -ids $? -o >$@
|
|
||||||
|
|
||||||
{$(REL_SRC_DIR)}.epp{}.cpp:
|
|
||||||
$(GPRE_PGM) -n -gds -raw -ids $? -o >$@
|
|
||||||
|
|
||||||
!ELSE
|
|
||||||
|
|
||||||
!ERROR Running on unknown operating system.
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
#
|
|
||||||
# NOTE: "stats" is temporarily removed since it isn't even used.
|
|
||||||
#
|
|
||||||
# stats.cpp
|
|
||||||
#
|
|
||||||
|
|
||||||
CPP_FILES=blob_filter.cpp dfw.cpp dpm.cpp dyn.cpp dyn_def.cpp \
|
|
||||||
dyn_del.cpp dyn_mod.cpp dyn_util.cpp fun.cpp grant.cpp \
|
|
||||||
ini.cpp met.cpp pcmet.cpp scl.cpp stats.cpp
|
|
||||||
|
|
||||||
all: $(CPP_FILES)
|
|
||||||
|
|
||||||
clean :
|
|
||||||
-$(DELETE_COMMAND) *.cpp
|
|
||||||
|
|
||||||
blob_filter.cpp :
|
|
||||||
$(GPRE_PGM) -n -manual -raw $? -o >$@
|
|
||||||
|
|
||||||
dyn_def.cpp :
|
|
||||||
$(GPRE_PGM) -n -gds -raw -ids $? -o > dyn_def.cpp.tmp
|
|
||||||
$(SED_PGM) -f $(REL_SRC_DIR)/dyn_def.sed dyn_def.cpp.tmp > dyn_def.cpp
|
|
||||||
|
|
@ -1,69 +0,0 @@
|
|||||||
REL_SRC_DIR=../src/jrd
|
|
||||||
REL_DST_DIR=./jrd
|
|
||||||
|
|
||||||
.SUFFIXES : .e .epp
|
|
||||||
|
|
||||||
!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
|
|
||||||
|
|
||||||
CLEAN_DIR_PATH=.\jrd\
|
|
||||||
DELETE_COMMAND=del /q
|
|
||||||
|
|
||||||
#
|
|
||||||
# MS NMAKE specific directory-relative inference rule
|
|
||||||
#
|
|
||||||
{$(REL_SRC_DIR)}.e{$(REL_DST_DIR)}.c:
|
|
||||||
$(GPRE_PGM) -n -gds -raw -ids $? -o >$@
|
|
||||||
|
|
||||||
{$(REL_SRC_DIR)}.epp{$(REL_DST_DIR)}.cpp:
|
|
||||||
$(GPRE_PGM) -n -gds -raw -ids $? -o >$@
|
|
||||||
|
|
||||||
!ELSE
|
|
||||||
|
|
||||||
!ERROR Running on unknown operating system.
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
#
|
|
||||||
# NOTE: "stats" is temporarily removed since it isn't even used.
|
|
||||||
#
|
|
||||||
# stats.cpp
|
|
||||||
#
|
|
||||||
|
|
||||||
CPP_FILES=$(REL_DST_DIR)/blob_filter.cpp \
|
|
||||||
$(REL_DST_DIR)/dfw.cpp \
|
|
||||||
$(REL_DST_DIR)/dpm.cpp \
|
|
||||||
$(REL_DST_DIR)/dyn.cpp \
|
|
||||||
$(REL_DST_DIR)/dyn_def.cpp \
|
|
||||||
$(REL_DST_DIR)/dyn_del.cpp \
|
|
||||||
$(REL_DST_DIR)/dyn_mod.cpp \
|
|
||||||
$(REL_DST_DIR)/dyn_util.cpp \
|
|
||||||
$(REL_DST_DIR)/fun.cpp \
|
|
||||||
$(REL_DST_DIR)/grant.cpp \
|
|
||||||
$(REL_DST_DIR)/ini.cpp \
|
|
||||||
$(REL_DST_DIR)/met.cpp \
|
|
||||||
$(REL_DST_DIR)/pcmet.cpp \
|
|
||||||
$(REL_DST_DIR)/scl.cpp \
|
|
||||||
$(REL_DST_DIR)/stats.cpp
|
|
||||||
|
|
||||||
|
|
||||||
all: $(CPP_FILES)
|
|
||||||
|
|
||||||
clean :
|
|
||||||
-$(DELETE_COMMAND) $(CLEAN_DIR_PATH)*.cpp
|
|
||||||
|
|
||||||
$(REL_DST_DIR)/blob_filter.cpp :
|
|
||||||
$(GPRE_PGM) -n -manual -raw $? -o >$@
|
|
||||||
|
|
||||||
$(REL_DST_DIR)/dyn_def.cpp :
|
|
||||||
$(GPRE_PGM) -n -gds -raw -ids $? -o > dyn_def.cpp.tmp
|
|
||||||
-$(SED_PGM) -f $(REL_SRC_DIR)/dyn_def.sed dyn_def.cpp.tmp > $(REL_DST_DIR)/dyn_def.cpp
|
|
||||||
$(DELETE_COMMAND) dyn_def.cpp.tmp
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
|||||||
REL_SRC_DIR=../../src/msgs
|
|
||||||
.SUFFIXES : .e .epp
|
|
||||||
|
|
||||||
!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 >$@
|
|
||||||
|
|
||||||
{$(REL_SRC_DIR)}.epp{}.cpp:
|
|
||||||
$(GPRE_PGM) -r -m -n $? -o >$@
|
|
||||||
|
|
||||||
!ELSE
|
|
||||||
|
|
||||||
!ERROR Running on unknown operating system.
|
|
||||||
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
#
|
|
||||||
# load.c - disabled
|
|
||||||
#
|
|
||||||
|
|
||||||
CPP_FILES=build_file.cpp check_msgs.cpp enter_msgs.cpp modify_msgs.cpp \
|
|
||||||
change_msgs.cpp
|
|
||||||
|
|
||||||
all: $(CPP_FILES)
|
|
||||||
|
|
||||||
clean :
|
|
||||||
-$(DELETE_COMMAND) *.cpp
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user