mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
* wrapper for linker shell script * use explicit extension for IDLAC preprocessing temporary file. [Imported from Perforce change 6572 at 2006-12-01 19:55:58] Subversion-branch: /trunk/polyorb Subversion-revision: 34535
22 lines
360 B
Makefile
22 lines
360 B
Makefile
if WINDOWS
|
|
WRAPPERS = run_script.exe linker.exe
|
|
else
|
|
WRAPPERS =
|
|
endif
|
|
|
|
all-local: $(WRAPPERS)
|
|
|
|
run_script.exe: force
|
|
$(GNATMAKE) -m -I. -I$(srcdir) $(@:.exe=) -cargs -gnatwae -gnatg
|
|
|
|
linker.exe: run_script.exe
|
|
rm -f linker.exe ; cp run_script.exe linker.exe
|
|
|
|
CLEANFILES = *.o *.ali b~*.ads b~*.adb
|
|
|
|
DISTCLEANFILES = $(WRAPPERS)
|
|
|
|
force::
|
|
|
|
install-exec-local:
|