mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
19 lines
268 B
Makefile
19 lines
268 B
Makefile
!include <win32.mak>
|
|
|
|
.c.obj:
|
|
$(cc) $(cdebug) $(cflags) -DSTRICT -YX /O2 -DNODEBUG $<
|
|
|
|
C_FILES= \
|
|
main.c
|
|
|
|
OBJS= $(C_FILES:.c=.obj)
|
|
|
|
all: flac_mac.exe
|
|
|
|
flac_mac.exe: $(OBJS)
|
|
link.exe $(OBJS) -out:$*.exe
|
|
|
|
clean:
|
|
-del *.obj *.pch
|
|
-del flac_mac.exe
|