File: Makefile

package info (click to toggle)
libadabindx 0.7.2-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,136 kB
  • ctags: 32
  • sloc: ada: 35,597; makefile: 556; sh: 10
file content (20 lines) | stat: -rw-r--r-- 352 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Makefile for the example program rotate_arrow
#
# THIS MAKEFILE IS FOR GNAT!!!
#
# 22.12.96 H.-F. Vogt
#

include ../../Local.conf

all: rotate_arrow

rotate_arrow: rotate_arrow.adb
	$(ADA_MAKE) $(ADA_MAKE_FLAGS) -I../../lib -I.. $@ -largs $(ADA_LINK_FLAGS) $(XLIB_DIR) $(XM_LIBS)

clean:
	$(RM) *.ali *.o

distclean:
	$(RM) *.ali *.o rotate_arrow