blob: f3faa8dc4a165e7f6dc2b3ab7b7cb8dd0368fe24 [file] [log] [blame]
# Check that the definitions below are correct for your system
CFLAGS+= -I../../../../../include -Wall
LOADLIBES+= -L../../../../../lib -lltp
TARGETS = ht_interrupt
all: $(TARGETS)
ht_interrupt:
${CC} -o ht_interrupt HTinterrupt.c HTutils.c $(CFLAGS) $(LOADLIBES)
install:
@set -e; for i in $(TARGETS) ; do ln -f $$i ../../../../bin/$$i ; done
clean:
rm -f $(TARGETS)