summaryrefslogtreecommitdiff
path: root/openpcd/opcd_test/Makefile
blob: 580e3a98d7ef6086152aeca6738beb3f9d0fa12a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/make
LDFLAGS=-lusb

all: opcd_test

clean:
	-rm -f *.o opcd_test

opcd_test: opcd_test.o
	$(CC) $(LDFLAGS) -o $@ $<

opcd_test.o: opcd_test.c
	$(CC) $(CFLAGS) -o $@ -c $<

.PHONEY: all clean
personal git repositories of Harald Welte. Your mileage may vary