8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 06:43:04 +01:00
firebird-mirror/generated/gpre/makefile

28 lines
413 B
Makefile
Raw Normal View History

2001-05-23 15:26:42 +02:00
!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
2002-02-26 14:48:58 +01:00
CPP_FILES=gpre_meta.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
2002-02-26 14:48:58 +01:00
gpre_meta.cpp : $(REL_SRC_DIR)/gpre_meta.epp
2001-05-23 15:26:42 +02:00
$(GPRE_PGM) -r -m -n $? -o >$@