8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 19:23:03 +01:00
firebird-mirror/generated/dudley/makefile

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