File: Makefile

package info (click to toggle)
libecgi 0.6.2-2.3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 4,000 kB
  • ctags: 307
  • sloc: ansic: 1,784; makefile: 126; sh: 13; xml: 7
file content (15 lines) | stat: -rw-r--r-- 237 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
DESTDIR =
CC = gcc
INCS =  -I../include/ -I.
FLAGS = -Wall

all: html2h

html2h: html2h.c html2h.h
	$(CC) html2h.c -o html2h $(INCS) $(FLAGS) ../obj/memfile.o

install: all
	install -m 755 html2h $(DESTDIR)/usr/bin

clean:
	rm -f html2h