mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
430 B
24 lines
430 B
#
|
|
# Makefile for the Portable Interoperability Tester (PIT)
|
|
#
|
|
# Copyright (c) 1994 Microsoft Corporation
|
|
#
|
|
|
|
targets: pit
|
|
|
|
CC = cc
|
|
CFLAGS = -DSOCKETS -DUNX
|
|
|
|
pit: sockif.o system.o pit.o
|
|
$(CC) $(CFLAGS) sockif.o system.o pit.o -o pit
|
|
|
|
sockif.o: sockif.c pit.h sockif.h
|
|
$(CC) $(CFLAGS) -g -c sockif.c -I.
|
|
|
|
system.o: system.c pit.h
|
|
$(CC) $(CFLAGS) -g -c system.c -I.
|
|
|
|
pit.o: pit.c pit.h sockif.h
|
|
$(CC) $(CFLAGS) -g -c pit.c -I.
|
|
|
|
|