File: Makefile

package info (click to toggle)
refit 0.12-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 2,280 kB
  • ctags: 2,663
  • sloc: ansic: 13,451; sh: 1,418; python: 631; objc: 319; makefile: 83; perl: 45
file content (15 lines) | stat: -rw-r--r-- 226 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#
# libeg/Makefile
# Build control file for the libeg library
#

LOCAL_CPPFLAGS  = -I.

OBJS            = screen.o image.o text.o load_bmp.o load_icns.o
TARGET          = libeg.a

all: $(TARGET)

include ../Make.common

# EOF