mirror of
https://github.com/ksherlock/profuse.git
synced 2024-12-23 11:31:43 +00:00
15 lines
230 B
Makefile
15 lines
230 B
Makefile
CC = g++
|
|
CPPFLAGS += -g -Wall -I../
|
|
|
|
|
|
all : Date.o Entry.o FileEntry.o VolumeEntry.o
|
|
|
|
Date.o : Date.cpp Date.h
|
|
|
|
Entry.o : Entry.cpp File.h
|
|
|
|
FileEntry.o : FileEntry.cpp File.h Date.h
|
|
|
|
VolumeEntry.o : VolumeEntry.cpp File.h Date.h
|
|
|