File: Makefile

package info (click to toggle)
libtioga-ruby 1.11-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 10,460 kB
  • ctags: 3,986
  • sloc: ansic: 38,451; ruby: 16,774; sh: 172; makefile: 111
file content (17 lines) | stat: -rw-r--r-- 329 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Makefile for Tioga Tutorial

# compiler information -- change as you wish
C_COMPILER = gcc
C_FLAGS = -g -c -ansi -W -Wall

BUILDER = builder
BUILDER_OBJS = builder.o

$(BUILDER) : $(BUILDER_OBJS) 
	$(C_COMPILER) -o $(BUILDER) $(BUILDER_OBJS) -lm

%.o: %.c
	$(C_COMPILER) -I$(EZVIEW_INCDIR) $(C_FLAGS) $<

clean : 
	-@rm -f *.o