File: makefile

package info (click to toggle)
libsx 2.05-6
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,480 kB
  • ctags: 1,576
  • sloc: ansic: 8,525; makefile: 267
file content (18 lines) | stat: -rw-r--r-- 220 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
#
include ../libsx_defs


OBJS       = main.o creq.o

all : creq

creq : $(OBJS) 
	$(CC) $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)  -o $@ $(OBJS) $(LIBS)

main.o : main.c creq.h

creq.o : creq.c

clean:
	rm -f *.o *~ core creq