mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-25 23:33:15 +00:00
21 lines
286 B
Makefile
21 lines
286 B
Makefile
CC = g++
|
|
CPPFLAGS += -Wall -O2 -g
|
|
|
|
newfs_prodos: \
|
|
newfs_prodos.o \
|
|
Exception.o \
|
|
BlockDevice.o \
|
|
UniversalDiskImage.o \
|
|
DiskCopy42Image.o \
|
|
DavexDiskImage.o \
|
|
RawDevice.o \
|
|
MappedFile.o \
|
|
Buffer.o \
|
|
Entry.o \
|
|
Directory.o \
|
|
VolumeDirectory.o \
|
|
Bitmap.o \
|
|
DateTime.o
|
|
|
|
|
|
|