File: Makefile

package info (click to toggle)
vmelilo 1.1.1-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 360 kB
  • ctags: 761
  • sloc: ansic: 7,361; makefile: 98
file content (26 lines) | stat: -rw-r--r-- 300 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# VME Linux/m68k Loader Debug Utilities
#
# Makefile
#

CC =		gcc
CFLAGS =	-O2 -fomit-frame-pointer -Wall


OBJS =		dumpmapfile


All:		$(OBJS)


# Targets:

dumpmapfile:	dumpmapfile.c ../vmelilo.h ../loader.h
		$(CC) $(CFLAGS) -o dumpmapfile dumpmapfile.c


# Clean up

clean:
		rm -f dumpmapfile