File: Makefile

package info (click to toggle)
fbcat 0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 124 kB
  • ctags: 25
  • sloc: xml: 200; ansic: 175; sh: 100; makefile: 25
file content (15 lines) | stat: -rw-r--r-- 180 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CFLAGS = -Wall -O2 -g

C_FILES = $(wildcard *.c)
O_FILES = $(C_FILES:.c=.o)

.PHONY: all
all: fbcat

fbcat: $(O_FILES)

.PHONY: clean
clean:
	$(RM) fbcat *.o

# vim:ts=4 sw=4 noet