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

34 lines
531 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/dsql
C_FILES=array.c blob.c metd.c
all: $(C_FILES)
clean :
-$(DELETE_COMMAND) *.c
array.c : $(REL_SRC_DIR)/array.e
$(GPRE_PGM) -r -m -n $? -o >$@
blob.c : $(REL_SRC_DIR)/blob.e
$(GPRE_PGM) -r -m -n $? -o >$@
metd.c : $(REL_SRC_DIR)/metd.e
$(GPRE_PGM) -r -m -n $? -o >$@