File: Makefile

package info (click to toggle)
gc 1.07-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 64 kB
  • ctags: 14
  • sloc: ansic: 161; makefile: 40; sh: 8
file content (11 lines) | stat: -rw-r--r-- 161 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
CC = gcc
PROG = gc

$(PROG):
	$(CC) $(CFLAGS) -o $(PROG) gc.c -lm

install:
	install -s -o root -g root $(PROG) $(DESTDIR)/usr/bin/gcb

clean:
	rm -f $(PROG) *~