File: Makefile_start

package info (click to toggle)
bibutils 7.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,040 kB
  • sloc: ansic: 112,579; sh: 462; makefile: 42
file content (21 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CFLAGS  = -I ../lib $(CFLAGSIN)

PROGS = hash_bu hash_marc

all: $(PROGS)

hash_marc: hash_marc.o ../lib/hash.o uintlist.o
	$(CC) $(CFLAGS) -o $@ $^

hash_bu: hash_bu.o ../lib/hash.o uintlist.o
	$(CC) $(CFLAGS) -o $@ $^

clean: 
	rm -f *.o core

realclean:
	rm -f *.o *.a core $(PROGS)

install:

test: