mirror of
https://github.com/AdaCore/PolyORB.git
synced 2026-02-12 13:01:15 -08:00
with proper visibility on all personalities. Ongoing work for F120-030 In support/Makefile.am: On Windows, build native-linker.exe in addition to linker.exe. For E524-010. [Imported from Perforce change 9870 at 2006-12-01 22:21:07] Subversion-branch: /trunk/polyorb Subversion-revision: 37335
22 lines
348 B
Makefile
22 lines
348 B
Makefile
if WINDOWS
|
|
WRAPPERS = linker.exe native-linker.exe
|
|
else
|
|
WRAPPERS =
|
|
endif
|
|
|
|
all-local: $(WRAPPERS)
|
|
|
|
run_script.exe: force
|
|
$(GNATMAKE) -m -I. -I$(srcdir) $(@:.exe=) -cargs -gnatwae -gnatg
|
|
|
|
$(WRAPPERS): run_script.exe
|
|
rm -f $@ ; cp run_script.exe $@
|
|
|
|
CLEANFILES = *.o *.ali b~*.ads b~*.adb
|
|
|
|
DISTCLEANFILES = $(WRAPPERS)
|
|
|
|
force::
|
|
|
|
install-exec-local:
|