File: Makefile

package info (click to toggle)
ruby-tioga 1.19.1-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 10,812 kB
  • sloc: ansic: 39,883; ruby: 17,312; sh: 79; makefile: 32
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