File: Makefile

package info (click to toggle)
cobalt-panel-utils 1.0.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 276 kB
  • ctags: 268
  • sloc: ansic: 1,145; sh: 170; makefile: 107
file content (24 lines) | stat: -rw-r--r-- 426 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
#
# Makefile for creating LED and LCD utilities
#
SRCS = lcdlock.c lcdlocale.c lcdtimeout.c lcddisplay.c lcdread.c \
	   lcdcursor.c lcdlink.c lcdnet.c lcdbutton.c
OBJS := $(SRCS:.c=.o)
LIB = liblcd.a

RANLIB = ranlib

DEBUG  = -g -Wall
COPTS  = -O2
CFLAGS = $(COPTS) -I../ $(COPTFLAGS)

all:    $(LIB)

$(OBJS): ../lcdutils.h

$(LIB): $(OBJS)
	$(AR) cr $(LIB) $(OBJS)
	$(RANLIB) $(LIB)

clean:
	-rm -f $(OBJS) $(LIB) *~ TAGS