8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:03:02 +01:00
firebird-mirror/generated/utilities/makefile
2001-05-23 13:26:42 +00:00

40 lines
657 B
Makefile

!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/utilities
#
# rstore.c - disabled
#
C_FILES=dba.c security.c rmet.c
all: $(C_FILES)
clean :
-$(DELETE_COMMAND) *.c
dba.c : $(REL_SRC_DIR)/dba.e
$(GPRE_PGM) -r -m -n $? -o >$@
security.c : $(REL_SRC_DIR)/security.e
$(GPRE_PGM) -r -m -n $? -o >$@
rmet.c : $(REL_SRC_DIR)/rmet.e
$(GPRE_PGM) -r -m -n $? -o >$@
# Disabled - unused
#rstore.c : $(REL_SRC_DIR)/rstore.e
# $(GPRE_PGM) -r -m -n $? -o >$@