mirror of
https://github.com/ProDOS-8/xHD.git
synced 2024-12-02 23:52:06 +00:00
18 lines
258 B
Makefile
18 lines
258 B
Makefile
|
xHDServer: main.o
|
||
|
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|
||
|
|
||
|
LDLIBS = -lserialport
|
||
|
|
||
|
ifeq ($(OS),Windows_NT)
|
||
|
|
||
|
LDLIBS += -lcfgmgr32 -lsetupapi
|
||
|
|
||
|
CC = gcc
|
||
|
CXX = g++
|
||
|
CPPFLAGS = -m64 -I win32
|
||
|
LDFLAGS = -m64 -L win32
|
||
|
|
||
|
xHDServer: win32/mmap-win32.o
|
||
|
|
||
|
endif # Windows_NT
|