[go: up one dir, main page]

File: makefile

package info (click to toggle)
sorcerer 1.0
  • links: PTS
  • area: main
  • in suites: slink
  • size: 736 kB
  • ctags: 1,524
  • sloc: ansic: 11,308; cpp: 1,388; makefile: 300
file content (21 lines) | stat: -rw-r--r-- 287 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Makefile for SORCERER libraries
#
SRC = astlib.c sstack.c sorlist.c sintstack.c
OBJ = astlib.o sstack.o sorlist.o sintstack.o
CFLAGS=-g -I../h
CC=cc

libs : $(OBJ) $(SRC)

clean:
	rm -f *.o core

scrub:
	rm -f *.o core

ci:
	ci -u $(SRC) *.h makefile

co:
	co -l $(SRC) *.h makefile